D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
lampp
/
lib
/
php
/
test
/
Var_Dump
/
tests
/
Filename :
bug11325.phpt
back
Copy
--TEST-- Bug #XXX1 : Strings with line containing a single "}" --FILE-- <?php error_reporting(E_ALL); require_once 'Var_Dump.php'; $vd = new Var_Dump(array('display_mode' => 'Text')); $string = 'before { inside }'; echo $vd->toString($string) . "\n" . $vd->toString($string . "\n" . 'after'); ?> --EXPECTREGEX-- string\(17\) before { inside } string\(23\) before { inside } after