1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

Merge branch 'PHP-7.1'

This commit is contained in:
Nikita Popov
2017-03-09 00:10:31 +01:00
2 changed files with 86 additions and 0 deletions
+5
View File
@@ -901,6 +901,11 @@ static zval *spl_array_get_property_ptr_ptr(zval *object, zval *member, int type
if ((intern->ar_flags & SPL_ARRAY_ARRAY_AS_PROPS) != 0
&& !std_object_handlers.has_property(object, member, 2, NULL)) {
/* If object has offsetGet() overridden, then fallback to read_property,
* which will call offsetGet(). */
if (intern->fptr_offset_get) {
return NULL;
}
return spl_array_get_dimension_ptr(1, intern, member, type);
}
return std_object_handlers.get_property_ptr_ptr(object, member, type, cache_slot);
+81
View File
@@ -0,0 +1,81 @@
--TEST--
Bug #74058 (ArrayObject can not notice changes)
--FILE--
<?php
class MyArrayObject extends ArrayObject
{
public function __construct($input = [])
{
parent::__construct($input, ArrayObject::ARRAY_AS_PROPS);
}
public function offsetSet($x, $v)
{
echo "offsetSet('{$x}')\n";
return parent::offsetSet($x, $v);
}
public function offsetGet($x)
{
echo "offsetGet('{$x}')\n";
return parent::offsetGet($x);
}
}
class MyArray extends ArrayObject
{
public function __construct($input = [])
{
parent::__construct($input);
}
public function offsetSet($x, $v)
{
echo "offsetSet('{$x}')\n";
return parent::offsetSet($x, $v);
}
public function offsetGet($x)
{
echo "offsetGet('{$x}')\n";
return parent::offsetGet($x);
}
}
$x = new MyArrayObject;
$x->a1 = new stdClass();
var_dump($x->a1);
$x->a1->b = 'some value';
var_dump($x->a1);
$y = new MyArray();
$y['a2'] = new stdClass();
var_dump($y['a2']);
$y['a2']->b = 'some value';
var_dump($y['a2']);
?>
--EXPECTF--
offsetSet('a1')
offsetGet('a1')
object(stdClass)#%s (0) {
}
offsetGet('a1')
offsetGet('a1')
object(stdClass)#%s (1) {
["b"]=>
string(10) "some value"
}
offsetSet('a2')
offsetGet('a2')
object(stdClass)#%s (0) {
}
offsetGet('a2')
offsetGet('a2')
object(stdClass)#%s (1) {
["b"]=>
string(10) "some value"
}