PHP - xattr_supported() 函数



xattr_supported() 函数可以检查文件系统是否支持扩展属性。

语法

bool xattr_supported( string $filename [, int $flags ] )

xattr_supported() 函数可以检查持有给定文件的系统是否支持扩展属性,并且需要对文件的读取访问权限。

xattr_supported() 函数如果文件系统支持扩展属性则返回 true,如果不支持则返回 false,如果无法确定(例如,路径错误或缺少文件权限)则返回 null。

示例

<?php
   $file = "some_file";

   if(xattr_supported($file)) {

   }
?>
php_function_reference.htm
广告