Html karakters omzetten
Zero XT
01/09/2009 20:49:00Weet iemand of php een functie heeft om alle html karakters zoals & < > etc. omzet naar & < > etc?
Ik kan er zelf wel een maken maar als php al zo'n functie heeft..
Ik kan er zelf wel een maken maar als php al zo'n functie heeft..
PHP hulp
24/12/2024 00:59:58- SanThe -
01/09/2009 20:59:00Beetje lui? Php.net heeft alle info.
htmlentities() en htmlspecialchars().
htmlentities() en htmlspecialchars().
Gewijzigd op 01/01/1970 01:00:00 door - SanThe -
Zero XT
01/09/2009 21:13:00- SanThe -
01/09/2009 21:15:00htmlspecialchars
(PHP 4, PHP 5)
htmlspecialchars — Convert special characters to HTML entities
The translations performed are:
* '&' (ampersand) becomes '&'
* '"' (double quote) becomes '"' when ENT_NOQUOTES is not set.
* ''' (single quote) becomes ''' only when ENT_QUOTES is set.
* '<' (less than) becomes '<'
* '>' (greater than) becomes '>'
(PHP 4, PHP 5)
htmlspecialchars — Convert special characters to HTML entities
The translations performed are:
* '&' (ampersand) becomes '&'
* '"' (double quote) becomes '"' when ENT_NOQUOTES is not set.
* ''' (single quote) becomes ''' only when ENT_QUOTES is set.
* '<' (less than) becomes '<'
* '>' (greater than) becomes '>'
Zero XT
01/09/2009 21:24:00Ahh foutje van mij. Firebug conventeert ze weer terug als ik in de broncode kijk via firebug zie je gewoon & staan. Wat stom haha.