1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/standard/tests/strings/bug37262.phpt
Nikita Popov ee16d99504 Remove create_function()
Deprecated in PHP 7.2 as part of
https://wiki.php.net/rfc/deprecations_php_7_2.
2019-01-28 15:58:23 +01:00

9 lines
138 B
PHP

--TEST--
Bug #37262 (var_export() does not escape \0 character)
--FILE--
<?php
var_export("foo\0bar");
?>
--EXPECT--
'foo' . "\0" . 'bar'