_wp_translate_php_url_constant_to_key

Advertisement

Private Access Private Access

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Summery Summery

Translate a PHP_URL_* constant to the named array keys PHP uses.

Syntax Syntax

_wp_translate_php_url_constant_to_key( int $constant )

Parameters Parameters

$constant

(Required) PHP*URL** constant.

Return Return

(string|false) The named key or false.

Source Source

File: wp-includes/http.php

		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;
	}
}

Advertisement

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

Advertisement

Leave a Reply