Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--Function -- html_entity_decode--SKIPIF--<?php if (function_exists('html_entity_decode')) { echo 'skip'; } ?>--FILE--<?phprequire_once 'PHP/Compat.php';PHP_Compat::loadFunction('html_entity_decode');$string = "I'll "walk" the <b>dog</b> now";echo html_entity_decode($string), "\n";echo html_entity_decode($string, ENT_COMPAT), "\n";echo html_entity_decode($string, ENT_QUOTES), "\n";echo html_entity_decode($string, ENT_NOQUOTES), "\n";?>--EXPECT--I'll "walk" the <b>dog</b> nowI'll "walk" the <b>dog</b> nowI'll "walk" the <b>dog</b> nowI'll "walk" the <b>dog</b> now