bug26458.phpt 391 B

1234567891011121314151617181920
  1. --TEST--
  2. Bug #26458 (var_dump(), var_export() & debug_zval_dump() are not binary safe for array keys)
  3. --FILE--
  4. <?php
  5. $test = array("A\x00B" => "Hello world");
  6. var_dump($test);
  7. var_export($test);
  8. debug_zval_dump($test);
  9. ?>
  10. --EXPECTF--
  11. array(1) {
  12. ["A%0B"]=>
  13. string(11) "Hello world"
  14. }
  15. array (
  16. 'A' . "\0" . 'B' => 'Hello world',
  17. )array(1) %s{
  18. ["A%0B"]=>
  19. string(11) "Hello world" %s
  20. }