SplFileInfo::isWritable
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::isWritable — エントリが書き込み可能であるかどうかを調べる
パラメータ
この関数にはパラメータはありません。
例
例1 SplFileInfo::isWriteable() の例
<?php
$info = new SplFileInfo('locked.jpg');
if (!$info->isWriteable()) {
echo $info->getFilename() . ' is not writeable';
}
?>
上の例の出力は、 たとえば以下のようになります。
locked.jpg is not writeable
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google