gpt4 book ai didi

php - 检查 div ID 是否存在 (PHP)

转载 作者:行者123 更新时间:2023-12-04 00:47:58 24 4
gpt4 key购买 nike

是否可以使用 PHP 检查元素是否存在?

我已经知道 javascript 方法,但我只想尽可能避免使用它。

最佳答案

如果您在字符串中有 HTML 服务器端,您可以使用 DOMDocument :

<?php
$html = '<html><body><div id="first"></div><div id="second"></div></body></html>';
$dom = new DOMDocument;
$dom->loadHTML($html);

$element = $dom->getElementById('second');
// this will be null if it isn't found
var_dump($element);

关于php - 检查 div ID 是否存在 (PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4594609/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com