没有加密,只是禁用掉了鼠标右键和复制粘贴;
给你说个思路吧!
先通过php获取到整个网页的源代码;
获取到class为comic_wraCon autoHeight的div,然后拿到这个里面img标签;
通过img标签的src属性,就获取到了的url地址,然后通过file_put_contents
把存放到你的服务器上。
$items = $itemManager->queryByIds($ids, $_MODULE['hq_01']);
$items_hot = $itemManager-> queryByKeyword ("","hotsell",12);
$hot_no = 0; //使用第几个hotsell返回值
for ($i = 0; $i < 12; $i++)
{
if ( isset($items[$i]) && $items[$i]->exist )
{
$itemUrl = $uriManager->detailURI($items[$i]);
$itemPicUrl = $items[$i]->getPicUrl(160);
$itemTitle = $items[$i]->title;
$itemPrice = $items[$i]->price;
}
else
{
$count_hot = 0; // 进入循环开始值
$count_hot_max = 10; // 进入循环最大值
do
{
$count_hot++;
$hot_no++;
if( isset($items_hot[$hot_no]) && $items_hot[$hot_no]->exist )
{
$itemUrl = $uriManager->detailURI($items_hot[$hot_no]);
$itemPicUrl = $items_hot[$hot_no]->getPicUrl(160);
$itemTitle = $items_hot[$hot_no]->title;
$itemPrice = $items_hot[$hot_no]->price;
$quit_hot = true;
}
}
while( $count_hot > $count_hot_max || $quit_hot); // 找hotsell中的值 找至多10遍
}
}
以上就是关于http://www.dmzj.com/view/pingdandewawa/54746.html#@page=1 怎么用 php 获取这个网站的图片啊,全部的内容,包括:http://www.dmzj.com/view/pingdandewawa/54746.html#@page=1 怎么用 php 获取这个网站的图片啊,、评论中个人小头像是怎么能够自动获取到的PHP、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)