(PECL xattr:0.9-1.0)
xattr_remove — Remove an extended attribute
This function removes an extended attribute of a file.
Atributele extinse au două spaţii de nume diferite: spaţiul de nume al utilizatorilor şi spaţiul de nume root. Spaţiul de nume al utilizatorilor e disponibil tuturor, în timp ce spaţiul de nume root este disponibil numai utilizatorului cu privilegii de root. xattr operează implicit în spaţiul utilizatorilor, dar puteţi să schimbaţi aceasta utilizând argumentul 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. |
Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eşecului.
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);
}
?>