Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Added failing test for ArrayObject::offsetExists().
This commit is contained in:
Shein Alexey 2012-03-27 19:00:28 +05:00
commit 1b179545c2

View File

@ -0,0 +1,10 @@
--TEST--
SPL: ArrayObject::offsetExists() should return true for element containing NULL
--FILE--
<?php
$ao = new ArrayObject(array('foo' => null));
var_dump($ao->offsetExists('foo'));
?>
--EXPECTF--
bool(true)