Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们在调试 PHP 代码时使用 echo 或print_r获取变量的值。
print_r
但是,DOMXPath 或 DOMDocument 的对象未在echoor中捕获print_r。
echo
调试 PHP 代码时如何从上述对象中获取值?
这是一个错误:
出于某种原因,DOM*类不向反射或任何其他能够检查对象的函数公开它们的属性。您必须编写一个手动收集属性的自定义检查器。
DOM*