mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
ee16d99504
Deprecated in PHP 7.2 as part of https://wiki.php.net/rfc/deprecations_php_7_2.
9 lines
138 B
PHP
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'
|