wp_get_direct_php_update_url

函数
wp_get_direct_php_update_url ( No parameters )
返回值
  • (string) URL for directly updating PHP or empty string.
定义位置
相关方法
wp_get_direct_update_https_urlwp_direct_php_update_buttonwp_get_default_update_php_urlwp_get_default_update_https_urlwp_get_update_php_url
引入
5.1.1
弃用
-

wp_get_direct_php_update_url: 这个函数返回WordPress的直接PHP更新URL。它用于确定在检查WordPress的更新时使用的URL。

获取直接更新网站所运行的PHP版本的URL。

只有在指定了`WP_DIRECT_UPDATE_PHP_URL`环境变量或使用{@see ‘wp_direct_php_update_url’}过滤器时才会返回一个URL。这允许主机将用户直接发送到可以将 PHP 更新到较新版本的页面。

function wp_get_direct_php_update_url() {
	$direct_update_url = '';

	if ( false !== getenv( 'WP_DIRECT_UPDATE_PHP_URL' ) ) {
		$direct_update_url = getenv( 'WP_DIRECT_UPDATE_PHP_URL' );
	}

	/**
	 * Filters the URL for directly updating the PHP version the site is running on from the host.
	 *
	 * @since 5.1.1
	 *
	 * @param string $direct_update_url URL for directly updating PHP.
	 */
	$direct_update_url = apply_filters( 'wp_direct_php_update_url', $direct_update_url );

	return $direct_update_url;
}

常见问题

FAQs
查看更多 >