php-src/ext/standard/tests/array/var_export2.phpt
Derick Rethans 9541a66cb8 - MFH: Fixed var_export() for array keys
- MFH: Fixed broken explode() test
2007-12-18 10:53:39 +00:00

14 lines
215 B
PHP

--TEST--
var_export() and empty array keys
--FILE--
<?php
$a = array ("\0" => 'null', "" => 'empty', "0" => 'nul');
var_export($a);
?>
--EXPECT--
array (
'' . "\0" . '' => 'null',
'' => 'empty',
0 => 'nul',
)