码迷,mamicode.com
首页 > Web开发 > 详细

PHP读取京东商品图片

时间:2014-08-02 23:11:24      阅读:208      评论:0      收藏:0      [点我收藏+]

标签: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 ‘/>‘;
    }
?>

 

PHP读取京东商品图片,布布扣,bubuko.com

PHP读取京东商品图片

标签:style   blog   http   color   html   div   htm   log   

原文地址:http://www.cnblogs.com/picco/p/phpgetjdimag.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!