我有一个分配给 $output 变量的字符串。我想使用 QueryPath 遍历字符串并向每个匹配的元素添加一个类。
目前我有:
$output = qp($output)->find('table')->addclass('table')->html();
唯一的问题是它在第一次匹配之前删除了 $output 的内容。有没有办法使用 QueryPath 来查找匹配项,然后添加类,同时保持 $output 的内容不变?
编辑:
Pseudo code:
$output = '<table class="temp"><blah></blah></table>';
Magic QueryPath
$output = '<table class="temp blah"><blah></blah></table>';