php去掉i标签的方法是,在php代码中使用strip_tags函数,并将带有i标签的代码作为参数就可以了,例如【strip_tags("Hello world!");】。
本文操作环境:windows10系统、php 7.3、thinkpad t480电脑。
在工作中我们可能会需要去除某些HTML标签,比如i标签、b标签等等。那么我们该如何去除这些HTML标签呢?
其实想要去除HTML标签是很简单的,因为PHP本身已经给我们提供了现有的函数,如strip_tags函数。下面就让我们来介绍下strip_tags函数。
strip_tags() 函数用来剥去字符串中的 HTML、XML 以及 PHP 的标签。
语法如下:
strip_tags(string,allow)
参数解释如下:
string 必需。规定要检查的字符串。
allow 可选。规定允许的标签。这些标签不会被删除。
代码示例:
<!DOCTYPE html> <html> <body> <?php echo strip_tags("Hello <b>world!</b>"); ?> <p>This function strips a string from HTML, XML, and PHP tags. In this example, the <b> tag gets stripped.</p> </body> </html>
我们一起来看下运行效果:
相关推荐:php视频教程
Atas ialah kandungan terperinci php如何去掉i标签. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!