Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--Function -- htmlspecialchars_decode--SKIPIF--<?php if (function_exists('htmlspecialchars_decode')) { echo 'skip'; } ?>--FILE--<?phprequire_once 'PHP/Compat.php';PHP_Compat::loadFunction('htmlspecialchars_decode');$text = 'Text & " ' < > End Text';echo $text, "\n";echo htmlspecialchars_decode($text), "\n";echo htmlspecialchars_decode($text, ENT_COMPAT), "\n";echo htmlspecialchars_decode($text, ENT_QUOTES), "\n";echo htmlspecialchars_decode($text, ENT_NOQUOTES), "\n";?>--EXPECT--Text & " ' < > End TextText & " ' < > End TextText & " ' < > End TextText & " ' < > End TextText & " ' < > End Text