PHP - xattr set() 函数



xattr_set() 函数可以设置扩展属性。

语法

bool xattr_set( string $filename , string $name , string $value [, int $flags ] )

xattr_set() 函数可以设置文件扩展属性的值。

扩展属性有两个不同的命名空间:用户和根。用户命名空间可供所有用户使用,而根命名空间仅可供具有根权限的用户使用。默认情况下,xattr 可以操作用户命名空间,但我们可以通过使用 flags 参数来更改它。

xattr_set() 函数在成功时返回 true,失败时返回 false。

示例

<?php
   $file = "my_favourite_song.wav";
   xattr_set($file, "Artist", "Someone");
   xattr_set($file, "My ranking", "Good");
   xattr_set($file, "Listen count", "34");

   printf("You've played this song %d times", xattr_get($file, "Listen count")); 
?>
php_function_reference.htm
广告