get_temp_dir

函数
get_temp_dir ( No parameters )
返回值
  • (string) Writable temporary directory.
定义位置
相关方法
get_sitemap_urlget_the_idget_theme_modget_term_to_editget_template_directory
引入
2.5.0
弃用
-

get_temp_dir: 这个函数检索服务器上的临时目录的路径。它不需要任何参数,以字符串形式返回临时目录的路径。

确定临时文件的可写目录。

该函数的首选是sys_get_temp_dir()的返回值,其次是你的PHP临时上传目录,然后是WP_CONTENT_DIR,最后默认为/tmp/。

如果这个函数没有找到一个可写的位置,它可以被你的wp-config.php文件中的WP_TEMP_DIR常数覆盖。

function get_temp_dir() {
	static $temp = '';
	if ( defined( 'WP_TEMP_DIR' ) ) {
		return trailingslashit( WP_TEMP_DIR );
	}

	if ( $temp ) {
		return trailingslashit( $temp );
	}

	if ( function_exists( 'sys_get_temp_dir' ) ) {
		$temp = sys_get_temp_dir();
		if ( @is_dir( $temp ) && wp_is_writable( $temp ) ) {
			return trailingslashit( $temp );
		}
	}

	$temp = ini_get( 'upload_tmp_dir' );
	if ( @is_dir( $temp ) && wp_is_writable( $temp ) ) {
		return trailingslashit( $temp );
	}

	$temp = WP_CONTENT_DIR . '/';
	if ( is_dir( $temp ) && wp_is_writable( $temp ) ) {
		return $temp;
	}

	return '/tmp/';
}

常见问题

FAQs
查看更多 >