mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
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'
|