mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
c9f27ee422
TypeException stays as-is for now because it uses messages that are incompatible with the way exception messages are displayed. closure_038.phpt and a few others now show that we're generating too many exceptions for compound operations on undefined properties -- this needs to be fixed in a followup.
40 lines
636 B
PHP
40 lines
636 B
PHP
--TEST--
|
|
Bug #34064 (arr[] as param to function in class gives invalid opcode)
|
|
--FILE--
|
|
<?php
|
|
class XmlTest {
|
|
|
|
function test_ref(&$test)
|
|
{
|
|
$test = "ok";
|
|
}
|
|
|
|
function test($test)
|
|
{
|
|
}
|
|
|
|
function run()
|
|
{
|
|
$ar = array();
|
|
$this->test_ref($ar[]);
|
|
var_dump($ar);
|
|
$this->test($ar[]);
|
|
}
|
|
}
|
|
|
|
$o = new XmlTest();
|
|
$o->run();
|
|
?>
|
|
--EXPECTF--
|
|
array(1) {
|
|
[0]=>
|
|
string(2) "ok"
|
|
}
|
|
|
|
Fatal error: Uncaught exception 'EngineException' with message 'Cannot use [] for reading' in %sbug34064.php:18
|
|
Stack trace:
|
|
#0 %s(%d): XmlTest->run()
|
|
#1 {main}
|
|
thrown in %sbug34064.php on line 18
|
|
|