moriyoshi Thu Oct 31 10:28:21 2002 EDT
Added files:
/php4/ext/standard/tests/strings htmlentities.phpt
Removed files:
/php4/tests/strings 003.phpt
Log:
Moved the test into the suitable place
Index: php4/ext/standard/tests/strings/htmlentities.phpt
+++ php4/ext/standard/tests/strings/htmlentities.phpt
--TEST--
HTML entities
--POST--
--GET--
--FILE--
<?php
setlocale (LC_CTYPE, "C");
$sc_encoded = htmlspecialchars ("<>\"&��\n");
echo $sc_encoded;
$ent_encoded = htmlentities ("<>\"&��\n");
echo $ent_encoded;
echo html_entity_decode($sc_encoded);
echo html_entity_decode($ent_encoded);
?>
--EXPECT--
<>"&��
<>"&åÄ
<>"&��
<>"&��
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php