php: php 简单 dom 解析器问题

发布于 2024-10-31 05:06:46 字数 105 浏览 0 评论 0原文

我正在使用 php simple dom 解析器,发现一个小问题:

当选择器仅返回一个元素时,我还需要为其运行一个 foreach 循环。 有更简单的方法吗?

谢谢

i'm using the php simple dom parser and found a little issue:

when the selector returns only one element, i also need to run a foreach loop for it.
is there a simpler way to do it?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青柠芒果 2024-11-07 05:06:46

手册说
find() 有第二个参数来实现这一点:

混合查找( string $selector [, int $index] )

通过 CSS 选择器查找元素。如果设置了index,则返回第N个元素对象,否则返回一个对象数组。

所以在你的情况下,

$txt = $ctl->find("input", 0); 

应该完成这项工作。

SimpleHTMLDOM API 参考

The manual says
find() has a second parameter for exactly that:

mixed find ( string $selector [, int $index] )

Find elements by the CSS selector. Returns the Nth element object if index is set, otherwise return an array of object.

So in your case,

$txt = $ctl->find("input", 0); 

should do the job.

SimpleHTMLDOM API reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文