标签:style blog http color html div htm log
根据京东的商品链接取出商品图片
<?php $file_path=‘http://item.jd.com/1163375.html‘; $file_path=‘http://item.jd.com/11316517.html‘; $str=file_get_contents($file_path); $substr=strstr($str,‘<img data-img="1" width="350"‘); if(strlen($substr)==0){ $substr=strstr($str,‘ <img width="350" height="350"‘); } if(strlen($substr)!=0){ $i=0; $j=0; while($i<8){ if($substr[$j]==‘"‘){ $i++; } echo $substr[$j++]; } echo ‘/>‘; } ?>
标签:style blog http color html div htm log
原文地址:http://www.cnblogs.com/picco/p/phpgetjdimag.html