1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/spl/tests/bug40036.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

31 lines
660 B
PHP

--TEST--
Bug #40036 (empty() does not work correctly with ArrayObject when using ARRAY_AS_PROPS)
--FILE--
<?php
class View extends ArrayObject
{
public function __construct(array $array = array())
{
parent::__construct($array, ArrayObject::ARRAY_AS_PROPS);
}
}
$view = new View();
$view->foo = false;
$view->bar = null;
$view->baz = '';
if (empty($view['foo']) || empty($view->foo)) {
echo "View::foo empty\n";
}
if (empty($view['bar']) || empty($view->bar)) {
echo "View::bar empty\n";
}
if (empty($view['baz']) || empty($view->baz)) {
echo "View::baz empty\n";
}
?>
--EXPECT--
View::foo empty
View::bar empty
View::baz empty