我看到UT failures中的a PHP webapp每晚在Travis CI中对抗PHP:
$ php --version
PHP 7.2.0-dev (cli) (built: Dec 4 2016 22:49:34) ( ZTS )
这是失败的测试用例:
$payments = PaymentsHelper::refunds('DE0000000001', '2016-04-01', '2017-04-01');
$this->assertNotNull($payments);
$this->assertEquals(0, count($payments));
测试失败
1) PaymentsHelperTest::test_refunds_within_lifetime
count(): Parameter must be an array or an object that implements Countable
目前正在测试的代码包含调试日志记录,显示refunds()
的返回值确实是一个数组:
Array
(
[0] => Payment Object
(
...
)
)
我每晚都会在PHP中遇到一个错误吗?
我进一步调试了这个问题并意识到错误发生在代码中,其中一个依赖返回一个NULL
,代码调用count(NULL)
:
$bonds = $bond_factory->find_all(/* ... */);
if (count($bonds) > 0)
{
//...
}
我决定用空检查来保护对count()
的调用:
$bonds = $bond_factory->find_all(/* ... */);
if (!is_null($bonds) && count($bonds) > 0)
{
//...
}
PHP 7.2.0-dev现在显然对其输入不太宽容。
通过警告的另一种方式..
if ( count( $bonds ? : [] ) ) { .... }