Registriert seit: 1. Feb 2004
Ort: Aachen
1.268 Beiträge
|
Re: [PHP] Umkehrfunktion zu html_special_chars?
28. Nov 2005, 19:17
Oder du nimmst diesen Code aus dem phpBB:
Code:
function undo_htmlspecialchars($input)
{
$input = preg_replace("/>/i", ">", $input);
$input = preg_replace("/</i", "<", $input);
$input = preg_replace("/"/i", "\"", $input);
$input = preg_replace("/&/i", "&", $input);
return $input;
}
Simon Praetorius Gruß
S2B
|
|
Zitat
|