php-src/tests/strings/003.phpt

20 lines
369 B
Plaintext
Raw Normal View History

--TEST--
HTML entities
--POST--
--GET--
--FILE--
<?php
2001-02-22 18:35:22 +00:00
setlocale (LC_CTYPE, "C");
2002-03-15 21:03:08 +00:00
$sc_encoded = htmlspecialchars ("<>\"&<26><>\n");
echo $sc_encoded;
$ent_encoded = htmlentities ("<>\"&<26><>\n");
echo $ent_encoded;
echo html_entity_decode($sc_encoded);
echo html_entity_decode($ent_encoded);
?>
--EXPECT--
&lt;&gt;&quot;&amp;<3B><>
&lt;&gt;&quot;&amp;&aring;&Auml;
2002-03-15 21:03:08 +00:00
<>"&<26><>
<>"&<26><>