From professional translators, enterprises, web pages and freely available translation repositories.
voorbeeld 1. htmlspecialchars() example
example 1. htmlspecialchars() example
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
zie de omschrijving van deze modes in htmlspecialchars().
see the description of these modes in htmlspecialchars().
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
zie ook stripslashes(), htmlspecialchars(), en quotemeta().
see also stripslashes(), htmlspecialchars(), and quotemeta().
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
zie ook stripcslashes(), stripslashes(), htmlspecialchars(), en quotemeta().
see also stripcslashes(), stripslashes(), htmlspecialchars(), and quotemeta().
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
net als htmlspecialchars() is er een optioneel derde parameter dat de karakter set definieert.
support for this argument was added in php 4.1.0.
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
zie ook: htmlspecialchars(), htmlentities(), strtr(), en array_flip().
see also htmlspecialchars(), htmlentities(), strtr(), and array_flip().
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
zie ook addslashes(), htmlentities(), htmlspecialchars(), nl2br(), en stripslashes().
see also addslashes(), htmlentities(), htmlspecialchars(), nl2br(), and stripslashes().
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
net als htmlspecialchars() neemt het een optioneel tweede argument die aangeeft wat er gedaan moet worden met enkele en dubbele quotes.
like htmlspecialchars(), the optional second quote_style parameter lets you define what will be done with'single 'and "double "quotes.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
en net als bij de htmlspecialchars() en htmlentities() functies kan je optioneel de quote_style specifieren die je gebruiken wilt.
and as in the htmlspecialchars() and htmlentities() functions you can optionally specify the quote_style you are working with.
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
deze functie is identiek aan htmlspecialchars() in alle opzichten, behalve dat met htmlentities() alle karakters met waarvan een html entity beschikbaar is worden vertaald naar de betreffende entity.
this function is identical to htmlspecialchars() in all ways, except with htmlentities(), all characters which have html character entity equivalents are translated into these entities.
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
get_html_translation_table() geeft een vertalingstabel weer die intern gebruikt wordt voor htmlspecialchars() en htmlentities().
get_html_translation_table() will return the translation table that is used internally for htmlspecialchars() and htmlentities().
Last Update: 2011-10-24
Usage Frequency: 2
Quality:
$a = split ('', $querystring); $i = 0; while ($i count ($a)) {$b = split ('=', $a[$i]); echo 'waarde voor parameter ', htmlspecialchars (urldecode ($b[0])),' is ', htmlspecialchars (urldecode ($b[1])), "br /"; $i++;}
$a = explode( '', $query_string); $i = 0; while ($i count($a)) {$b = split('=', $a[$i]); echo'value for parameter ', htmlspecialchars(urldecode($b[0])),' is', htmlspecialchars(urldecode($b[1])), "br / \n"; $i++;}
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting