xattr_remove
(PECL)
xattr_remove --
Remove an extended attribute
説明
bool
xattr_remove ( string filename, string name [, int flags] )
This function removes an extended attribute of a file.
拡張属性には二種類の異なる名前空間、つまり、ユーザとルートがあります。
ユーザ名前空間は、全てのユーザで利用可能ですが、ルート名前空間は、ルート権限を有するユーザのみ利用可能です。
xattrはデフォルトでユーザ名前空間で処理を行いますが、 flags 引数によりこれを変更することができます。
パラメータ
- filename
The file from which we remove the attribute.
- name
The name of the attribute to remove.
- flags
表 1. Supported xattr flags
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. |
戻り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例
例 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); } ?>
|
|