1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/standard/tests/array/bug52534.phpt

15 lines
171 B
PHP

--TEST--
Bug #52534 (var_export array with negative key)
--FILE--
<?php
$aArray = array ( -1 => 'Hello');
var_export($aArray);
?>
--EXPECT--
array (
-1 => 'Hello',
)