gpt4 book ai didi

php - 如何使用 php 检测字符串上的 html 标签?

转载 作者:行者123 更新时间:2023-12-02 03:50:19 25 4
gpt4 key购买 nike

我需要知道html中有什么标签的字符串,例如:

$string = '<a href="http://example.com/">Hello World!</a>'
$result= 'a';

PHP中有函数吗?

最佳答案

您可以使用 preg_match :

 $result = preg_match("/<[^<]+>/",$string, $res);

关于php - 如何使用 php 检测字符串上的 html 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41632879/

25 4 0