为什么不能将SplFileInfo转换为布尔值?

时间:2013-07-05 12:14:17

标签: php spl truthiness

PHP的一个限制是对象总是评估为true。但是SplFileinfo(以及Symfony的UploadedFile等子类)表现不同:

$a = new ArrayIterator();       // or any other class
$b = new SplFileInfo(__FILE__); // file used is not important

if ($a) echo 'true';   // 'true'
if (!$a) echo 'false'; // nothing because $a is true

if ($b) echo 'true';   // 'true'
if (!$b) echo 'false'; // Catchable fatal error: Object of class 
                       // SplFileInfo could not be converted to boolean

这是一个错误吗?测试在5.3和5.4。 SplFileObject也会发生这种情况。可能related question。从2011年开始a Symfony issue

2 个答案:

答案 0 :(得分:7)

我觉得这是一个错误所以我提交了错误报告。

https://bugs.php.net/bug.php?id=65213

- 编辑,大约在PHP 5.6.17左右,这个bug似乎已经修复了。

答案 1 :(得分:4)

我也遇到过这个问题。我不知道PHP对这个例外的理性是什么。

对于其他遇到此问题的人来说,一个简单的解决方法就是将SplFileInfo对象与false进行比较。

$b = new SplFileInfo(__FILE__);
if ($b != false) {
   echo "This will not throw an exception";
}

if (!$b) {
   echo "This will throw an exception";
}