get_()

最后更新于:2021-11-26 09:13:13

get_()

Get the HTTP Origin of the current request.

响应

(string) URL of the origin. Empty string if no origin.

源文件

文件: gc-includes/http.php

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