我试图从类中获取pic id和描述
<div class="pic" style="top:0px;left:0px;height:149px;" data=
{"pic_id":"06e50224ab189";}" pic-descr=" this title " data-index="0">
....
</div>
如何找到并获取pic_id
数据和pic-descr
?
答案 0 :(得分:1)
这很有意思,因为看起来像pic_id被破坏了json。我们仍然可以使用正则表达式获取数据:
$str = <<<EOF
<div class="pic" style="top:0px;left:0px;height:149px;" data='{"pic_id":"06e50224ab189";}' pic-descr=" this title " data-index="0">
</div>
EOF;
$html = str_get_html($str);
$div = $html->find('.pic', 0);
if(preg_match('/:"(.*?)"/', $div->data, $m)){
echo "pic_id is: " . $m[1] . "\n";
}
echo "pic-descr is: " . $div->{'pic-descr'} . "\n";
如果json没有坏掉,你可以这样做:
json_decode($div->data)->pic_id