PHP/HTML/HTML String — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:05, 26 мая 2010
Escape HTML char
<?php
$input = "I just can"t get <<enough>> of PHP!";
echo htmlspecialchars($input);
?>
HTML tag strip
<?php
$input = "This <a href="http://www.wbex.ru/">wbex</a> is <b> </b>!";
echo strip_tags($input, "<a>");
?>
strip_tags: strip tags from html string
<?php
$input = "Email <a href="spammer@example.ru">spammer@example.ru</a>";
echo strip_tags($input);
?>