mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
11 lines
253 B
PHP
11 lines
253 B
PHP
--TEST--
|
|
Bug #37262 (var_export() does not escape \0 character)
|
|
--FILE--
|
|
<?php
|
|
$func = create_function('$a', 'return $a;');
|
|
var_export($func);
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function create_function() is deprecated in %s on line %d
|
|
'' . "\0" . 'lambda_%d'
|