diff options
Diffstat (limited to 'tests/strings')
-rw-r--r-- | tests/strings/004.phpt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/strings/004.phpt b/tests/strings/004.phpt new file mode 100644 index 0000000000..38a9e9374f --- /dev/null +++ b/tests/strings/004.phpt @@ -0,0 +1,17 @@ +--TEST-- +highlight_string() buffering +--POST-- +--GET-- +--FILE-- +<?php +$var = highlight_string("<br /><?php echo \"foo\"; ?><br />"); +$var = highlight_string("<br /><?php echo \"bar\"; ?><br />", TRUE); +echo "\n[$var]\n"; +?> +--EXPECT-- +<code><font color="#000000"> +<br /><font color="#0000BB"><?php </font><font color="#007700">echo </font><font color="#DD0000">"foo"</font><font color="#007700">; </font><font color="#0000BB">?></font><br /></font> +</code> +[<code><font color="#000000"> +<br /><font color="#0000BB"><?php </font><font color="#007700">echo </font><font color="#DD0000">"bar"</font><font color="#007700">; </font><font color="#0000BB">?></font><br /></font> +</code>] |