mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
51d495850a
will follow later today)
26 lines
702 B
PHP
26 lines
702 B
PHP
--TEST--
|
|
Bug #31828 (Crash with zend.ze1_compatibility_mode=On)
|
|
--INI--
|
|
zend.ze1_compatibility_mode=on
|
|
error_reporting=4095
|
|
--FILE--
|
|
<?php
|
|
$o = new stdClass();
|
|
$o->id = 77;
|
|
$o->name = "Aerospace";
|
|
$a[] = $o;
|
|
$a = $a[0];
|
|
print_r($a);
|
|
?>
|
|
--EXPECTF--
|
|
Strict Standards: Implicit cloning object of class 'stdClass' because of 'zend.ze1_compatibility_mode' in %sbug31828.php on line 2
|
|
|
|
Strict Standards: Implicit cloning object of class 'stdClass' because of 'zend.ze1_compatibility_mode' in %sbug31828.php on line 5
|
|
|
|
Strict Standards: Implicit cloning object of class 'stdClass' because of 'zend.ze1_compatibility_mode' in %sbug31828.php on line 6
|
|
stdClass Object
|
|
(
|
|
[id] => 77
|
|
[name] => Aerospace
|
|
)
|