helly           Mon Sep 15 16:30:33 2003 EDT

  Added files:                 
    /php-src/tests/lang bug25547.phpt 
  Log:
  Test for bug #25547
  

Index: php-src/tests/lang/bug25547.phpt
+++ php-src/tests/lang/bug25547.phpt
--TEST--
Bug #25547 (error_handler and array index with function call)
--FILE--
<?php

function handler($errno, $errstr, $errfile, $errline, $context)
{
        echo __FUNCTION__ . "($errstr)\n";
}

set_error_handler('handler');

function foo($x) {
        return "foo";
}

$output = array();
++$output[foo("bar")];

print_r($output);

echo "Done";
?>
--EXPECT--
handler(Undefined index:  foo)
Array
(
    [foo] => 1
)
Done

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to