PHP.nl

xattr_remove

xattr_remove

Remove an extended attribute

bool **xattr_remove** string $filename string $name int $flags

This function removes an extended attribute of a file.

filenameThe file from which we remove the attribute.

nameThe name of the attribute to remove.

flags

return.success

Voorbeeld: 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);
}
?>

xattr_list``xattr_set``xattr_get