PHP/HTML/HTML String

Материал из Web эксперт
Перейти к: навигация, поиск

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);
?>