You appear to be a bot. Output may be restricted
Description
Usage
bw_build_request( $domain, $file );
Parameters
- $domain
- ( mixed ) required –
- $file
- ( mixed ) optional –
Returns
voidSource
File name: oik-batch/oik-site.phpLines:
1 to 14 of 14
function bw_build_request( $domain, $file=NULL ) { if ( strpos( $domain, ':' ) == 0 ) $req = "http://".$domain; else $req = $domain; $req = rtrim( $req, "/" ); if ( $file <> NULL ) { $req = rtrim( $req, "/" ); $req .= "/". ltrim( $file, "/" ); } return( $req); }View on GitHub