DomDocument检查网站是否有响应式设计

时间:2017-04-05 12:43:56

标签: php laravel domdocument responsive

我需要为扫描做的最后一件事是:检查我扫描的网站是否有响应。

我试图通过if($node->getAttribute('class')=='row') {查看,但这不起作用。有什么方法可以检查网站是否有响应?

$responsive = $dom->getElementsByTagName('div');

我正在使用 Laravel 5.4和DomDocument

foreach ($responsive as $node) {
  if($node->getAttribute('class')=='row') {
   echo "Is responsive";
   }
}

我正在检查' row'因为很多人使用 Bootstrap或Foundation 如果您知道我可以查询媒体查询的方式,请告诉我^^,

谢谢,

Itvba

0 个答案:

没有答案