返回介绍

_get_component_from_parsed_url_array()

发布于 2017-09-11 13:23:20 字数 2198 浏览 971 评论 0 收藏 0

_get_component_from_parsed_url_array( array|false $url_parts,  int $component = -1 )

Retrieve a specific component from a parsed URL array.


description


参数

$url_parts

(array|false) (Required) The parsed URL. Can be false if the URL failed to parse.

$component

(int) (Optional) The specific component to retrieve. Use one of the PHP predefined constants to specify which one. Defaults to -1 (= return all parts as an array). @see <a href="http://php.net/manual/en/function.parse-url.php">http://php.net/manual/en/function.parse-url.php</a>

Default value: -1


返回值

(mixed) False on parse failure; Array of URL components on success; When a specific component has been requested: null if the component doesn't exist in the given URL; a string or - in the case of PHP_URL_PORT - integer when it does. See parse_url()'s return values.


源代码

File: wp-includes/http.php

function _get_component_from_parsed_url_array( $url_parts, $component = -1 ) {
	if ( -1 === $component ) {
		return $url_parts;
	}

	$key = _wp_translate_php_url_constant_to_key( $component );
	if ( false !== $key && is_array( $url_parts ) && isset( $url_parts[ $key ] ) ) {
		return $url_parts[ $key ];
	} else {
		return null;
	}
}

更新日志

Versiondescription
4.7.0Introduced.

相关函数

Uses

  • wp-includes/http.php: _wp_translate_php_url_constant_to_key()

Used By

  • wp-includes/http.php: wp_parse_url()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文