summaryrefslogtreecommitdiff
path: root/ext/mbstring
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2004-10-09 08:16:29 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2004-10-09 08:16:29 +0000
commita86095fe07bb396b8940ce6b3840c0df303d5912 (patch)
tree80575a4f5ccf7c12ffaa4e9e89c36c59726a2f7a /ext/mbstring
parentb3d9c5bea63c63f1340711dd3e806fc97ce5b07f (diff)
downloadphp-git-a86095fe07bb396b8940ce6b3840c0df303d5912.tar.gz
- Fix test. I have no idea why the test was left this way.
Diffstat (limited to 'ext/mbstring')
-rw-r--r--ext/mbstring/tests/htmlent.phpt9
1 files changed, 6 insertions, 3 deletions
diff --git a/ext/mbstring/tests/htmlent.phpt b/ext/mbstring/tests/htmlent.phpt
index e625578e04..e49714ddc2 100644
--- a/ext/mbstring/tests/htmlent.phpt
+++ b/ext/mbstring/tests/htmlent.phpt
@@ -28,11 +28,14 @@ mbstring.encoding_translation=1
?>
<?php echo mb_http_input('l').'>'.mb_internal_encoding().'>'.mb_http_output();?>
-<?php mb_parse_str("test=&#64;&#65;&#66;&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;", $test);
-print_r($test['test']);
+<?php mb_parse_str("test=&#38;&#64;&#65;&#66;&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;", $test);
+print_r($test);
?>
===DONE===
--EXPECT--
HTML-ENTITIES>UTF-8>HTML-ENTITIES
-test='&&;&@AB&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;'
+Array
+(
+ [test] => &@AB&#128;&#129;&#130;&auml;&ouml;&uuml;&euro;&lang;&rang;
+)
===DONE===