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--
&lt;&gt;&quot;&amp;εΔ
&lt;&gt;&quot;&amp;&aring;&Auml;
<>"&εΔ
<>"&εΔ



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to