wp_is_writable

函数
wp_is_writable ( $path )
参数
  • (string) $path Path to check for write-ability.
    Required:
返回值
  • (bool) Whether the path is writable.
相关
  • win_is_writable()
定义位置
相关方法
win_is_writableis_iterablewp_iso_descramblerwp_is_mobilewp_install
引入
3.6.0
弃用
-

wp_is_writable: 这个函数用于检查一个文件或目录是否可写。它接收一个文件或目录路径作为参数,如果它是可写的,则返回真,否则返回假。

确定一个目录是否可写。

这个函数是用来解决PHP中某些主要影响Windows服务器的ACL问题。

function wp_is_writable( $path ) {
	if ( 'WIN' === strtoupper( substr( PHP_OS, 0, 3 ) ) ) {
		return win_is_writable( $path );
	} else {
		return @is_writable( $path );
	}
}

常见问题

FAQs
查看更多 >