Добавлены профессиональными переводчиками и компаниями и на основе веб-страниц и открытых баз переводов.
htmlspecialchars($data));
htmlspecialchars($data));
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
vea también htmlspecialchars().
see also htmlspecialchars().
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
echo htmlspecialchars($datos)."\n";
echo htmlspecialchars($data)."\n";
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
Предупреждение: Содержит скрытое HTML-форматирование
alias de la función htmlspecialchars() .
convenience wrapper for htmlspecialchars() .
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
vea también htmlspecialchars() y nl2br().
see also html_entity_decode(), get_html_translation_table(), htmlspecialchars(), nl2br(), and urlencode().
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
vea también htmlspecialchars(), htmlentities() y wordwrap().
see also htmlspecialchars(), htmlentities(), wordwrap(), and str_replace().
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
vea también stripslashes(), htmlspecialchars(), y quotemeta().
see also stripslashes(), htmlspecialchars(), and quotemeta().
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
vea también stripcslashes(), stripslashes(), htmlspecialchars() y quotemeta().
see also stripcslashes(), stripslashes(), htmlspecialchars(), and quotemeta().
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
la descripción de los modos disponibles se encuentra en la función htmlspecialchars().
see the description of these modes in htmlspecialchars().
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
así que incluso si su url no es dinámica, es necesario usar htmlspecialchars() sobre la url.
so even if your url is not dynamic, you need to htmlspecialchars() the url.
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
vea también: htmlspecialchars(), htmlentities(), strtr(), y array_flip().
see also htmlspecialchars(), htmlentities(), strtr(), and array_flip().
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
vea también stripcslashes(), stripslashes(), htmlspecialchars(), htmlspecialchars(), y quotemeta().
see also stripcslashes(), stripslashes(), htmlspecialchars(), and quotemeta().
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
esta función es del todo idéntica a htmlspecialchars(), excepto que traduce todos los caracteres que tienen equivalente como entidad html.
like htmlspecialchars(), it takes an optional third argument which defines character set used in conversion.
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
para especificar una cadena cualquiera, es necesario incluirla en comillas dobles, y aplicar htmlspecialchars() sobre el valor completo.
in order to specify a random string, you must include it in double quotes, and htmlspecialchars() the whole value.
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
además htmlspecialchars(), tiene un tercer parámetro opcional charset el cual define el conjunto de caracteres que serán utilizados en la conversión.
like htmlspecialchars(), it takes an optional third argument charset which defines character set used in conversion.
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
esta función es identica en todo a htmlspecialchars(), excepto que con htmlentities(), todos los caracteres que tengan una entidad equivalente en html serán cambiados a esas entidades.
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.
Последнее обновление: 2018-02-13
Частота использования: 1
Качество:
get_html_translation_table() devolverá la tabla de traducción que se usa internamente para htmlspecialchars() y htmlentities().
get_html_translation_table() will return the translation table that is used internally for htmlspecialchars() and htmlentities().
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
$a = split ('', $querystring); $i = 0; while ($i count ($a)) {$b = split ('=', $a [$i]); echo 'el valor para el parámetro ', htmlspecialchars (urldecode ($b [0])),' es ', 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++;}
Последнее обновление: 2011-10-24
Частота использования: 1
Качество:
Предупреждение: Содержит скрытое HTML-форматирование