(PECL xattr:0.9-1.0)
xattr_remove — Remove an extended attribute
This function removes an extended attribute of a file.
Rozšírené atribúty majú dve odlišné namespacey: user a root namespace. User namespace je dostupná pre všetkých užívateľov, zatiaľčo root namespace je dostupná iba pre užívateľa s rootovskými privilégiami. xattr ako default pracuje na user namespace, ale môžete to zmeniť pomocou argumentu flags .
The file from which we remove the attribute.
The name of the attribute to remove.
XATTR_DONTFOLLOW | Do not follow the symbolic link but operate on symbolic link itself. |
XATTR_ROOT | Set attribute in root (trusted) namespace. Requires root privileges. |
Vracia TRUE pri úspechu alebe FALSE pri chybe.
Example#1 Removes all extended attributes of a file
<?php
$file = 'some_file';
$attributes = xattr_list($file);
foreach ($attributes as $attr_name) {
xattr_remove($file, $attr_name);
}
?>