PHP 8.4.0 RC3 available for testing

SplFileInfo::isWritable

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

SplFileInfo::isWritableTells if the entry is writable

说明

public SplFileInfo::isWritable(): bool

Checks if the current entry is writable.

参数

此函数没有参数。

返回值

Returns true if writable, false otherwise;

示例

示例 #1 SplFileInfo::isWriteable() example

<?php
$info
= new SplFileInfo('locked.jpg');
if (!
$info->isWriteable()) {
echo
$info->getFilename() . ' is not writeable';
}
?>

以上示例的输出类似于:

locked.jpg is not writeable

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top