PHP_VERSION_ID
PHP_VERSION_ID = $version[0] * 10000 + $version[1] * 100 + $version[2]
http_build_url(mixed $url, mixed $parts = array(), integer $flags = HTTP_URL_REPLACE, array $new_url = array()) : string
Build a URL.
The parts of the second URL will be merged into the first according to the flags argument.
| mixed | $url | (part(s) of) an URL in form of a string or associative array like parse_url() returns |
| mixed | $parts | same as the first argument |
| integer | $flags | a bitmask of binary or'ed HTTP_URL constants; HTTP_URL_REPLACE is the default |
| array | $new_url | if set, it will be filled with the parts of the composed url like parse_url() would return |