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 语法的问题,但为什么会这样:
$b = new DOMXPath($z); $b = $x->query('//div[contains(@class,"xxx")]');
但是使用带有单引号的双引号不会:
$b = $x->query("//div[contains(@class,'xxx')]//a");
也许它与字符串中的单引号有关。
尝试这个:
$b = $x->query("//div[contains(@class,\"xxx\")]//a");
否则我会坚持使用单引号版本。到底有什么大不了的?