You appear to be a bot. Output may be restricted
Description
Translate a PHP_URL_* constant to the named array keys PHP uses.
Usage
$string|false = _wp_translate_php_url_constant_to_key( $constant );
Parameters
- $constant
- ( int ) required – PHP_URL_* constant.
Returns
string|false The named key or false.
Source
File name: wordpress/wp-includes/http.php
Lines:
1 to 18 of 18
function _wp_translate_php_url_constant_to_key( $constant ) { $translation = array( PHP_URL_SCHEME => 'scheme', PHP_URL_HOST => 'host', PHP_URL_PORT => 'port', PHP_URL_USER => 'user', PHP_URL_PASS => 'pass', PHP_URL_PATH => 'path', PHP_URL_QUERY => 'query', PHP_URL_FRAGMENT => 'fragment', ); if ( isset( $translation[ $constant ] ) ) { return $translation[ $constant ]; } else { return false; } }