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 xattr_set()用法及代码示例
- PHP xattr_list()用法及代码示例
- PHP xattr_remove()用法及代码示例
- PHP xattr_get()用法及代码示例
- PHP xmlwriter_end_dtd_attlist()用法及代码示例
- PHP xmlwriter_end_dtd_element()用法及代码示例
- PHP xdiff_file_diff_binary()用法及代码示例
- PHP xml_get_current_column_number()用法及代码示例
- PHP xmlwriter_write_dtd()用法及代码示例
- PHP xdiff_file_rabdiff()用法及代码示例
- PHP xmlwriter_full_end_element()用法及代码示例
- PHP xmlwriter_end_document()用法及代码示例
- PHP xmlwriter_end_comment()用法及代码示例
- PHP xmlwriter_start_cdata()用法及代码示例
- PHP xmlwriter_end_element()用法及代码示例
- PHP xdiff_string_rabdiff()用法及代码示例
- PHP xml_parser_free()用法及代码示例
- PHP xmlwriter_end_dtd()用法及代码示例
- PHP xml_get_current_byte_index()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - xattr supported() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。