mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
18 lines
359 B
PHP
18 lines
359 B
PHP
--TEST--
|
|
Capturing array in user error handler during index conversion
|
|
--FILE--
|
|
<?php
|
|
set_error_handler(function($code, $msg) {
|
|
echo "Err: $msg\n";
|
|
$GLOBALS[''] = $GLOBALS['y'];
|
|
});
|
|
function x(&$s){
|
|
$s[100000000000000000000] = 1;
|
|
}
|
|
x($y);
|
|
var_dump($y);
|
|
?>
|
|
--EXPECT--
|
|
Err: Implicit conversion from float 1.0E+20 to int loses precision
|
|
array(0) {
|
|
}
|