Symfony DomCrawler。过滤条件

时间:2015-07-08 20:05:39

标签: php symfony domcrawler

我在Symfony 2中有这个脚本:

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\DomCrawler\Crawler;

class MyController extends Controller
{
....
foreach($crawler->filter('[type="text/css"]') as $content){
/* make things */
}
foreach($crawler->filter('[rel="stylesheet"]') as $content){
/* make things */
}

¿可以$crawler->filter接受各种条件并在一个foreach中完成吗?例如:

foreach($crawler->filter('[rel="stylesheet"] OR [type="text/css"]') as $content){
/* make things */
}

2 个答案:

答案 0 :(得分:2)

filter函数采用标准的CSS选择器,所以:

foreach ($crawler->filter('[rel="stylesheet"],[type="text/css"]') as $content) {
   /* make things */
}

应该做的工作。

答案 1 :(得分:0)

AFAIK这是不可能的,但你可以这样做:

$crawler->filter('[rel="stylesheet"]')->addAll($crawler->filter('[type="text/css"]'));

这可以解决您的问题。

另外,您还可以使用xpath进行过滤。