mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
11 lines
137 B
PHP
11 lines
137 B
PHP
--TEST--
|
|
Bug #78840 (imploding $GLOBALS crashes)
|
|
--FILE--
|
|
<?php
|
|
$glue = '';
|
|
@implode($glue, $GLOBALS);
|
|
echo "done\n";
|
|
?>
|
|
--EXPECT--
|
|
done
|