get_http_origin

函数
get_http_origin ( No parameters )
返回值
  • (string) URL of the origin. Empty string if no origin.
定义位置
相关方法
get_allowed_http_originsis_allowed_http_originget_the_author_loginget_pluginsget_to_ping
引入
3.4.0
弃用
-

get_http_origin: 这个函数用来检索HTTP Origin头的值,它用于识别跨源请求的来源。这对于保证网站免受跨站脚本攻击很有用。

获取当前请求的HTTP原点.

function get_http_origin() {
	$origin = '';
	if ( ! empty( $_SERVER['HTTP_ORIGIN'] ) ) {
		$origin = $_SERVER['HTTP_ORIGIN'];
	}

	/**
	 * Change the origin of an HTTP request.
	 *
	 * @since 3.4.0
	 *
	 * @param string $origin The original origin for the request.
	 */
	return apply_filters( 'http_origin', $origin );
}

常见问题

FAQs
查看更多 >