php-src/ext/standard/tests/array/var_export2.phpt
Derick Rethans b5629cb468 - Fixed var_export() for array keys
- Fixed broken explode() test
2007-12-18 10:53:25 +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',
)