(PHP 5 >= 5.1.2)
SplFileInfo::isExecutable — Tells if the file is executable
The method description goes here.
この関数にはパラメータはありません。
Returns TRUE if executable, FALSE otherwise.
例1 SplFileInfo::isExecutable() example
<?php
$info = new SplFileInfo('/usr/bin/php');
var_dump($info->isExecutable());
$info = new SplFileInfo('/usr/bin');
var_dump($info->isExecutable());
$info = new SplFileInfo('foo');
var_dump($info->isExecutable());
?>
上の例の出力は、たとえば 以下のようになります。
bool(true) bool(true) bool(false)