]> granicus.if.org Git - php/commitdiff
- Fix test. I have no idea why the test was left this way.
authorMoriyoshi Koizumi <moriyoshi@php.net>
Sat, 9 Oct 2004 08:16:29 +0000 (08:16 +0000)
committerMoriyoshi Koizumi <moriyoshi@php.net>
Sat, 9 Oct 2004 08:16:29 +0000 (08:16 +0000)
ext/mbstring/tests/htmlent.phpt

index e625578e04fa7fe03378adea515c305edb099beb..e49714ddc2eafedef00c8b918faa2f26326234ec 100644 (file)
@@ -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===