文件名称:Snoopy.class.php
文件大小:37KB
文件格式:PHP
更新时间:2014-10-25 15:03:17
Snoopy.class.php ,Snoopy,下载,下载远程图
此类用于下载方面的程序应用,例子如下: function downimage($furl) { $filename=""; $str=explode('/',$furl) ; $filename= $str[count($str)-1] ; $snoopyx = new Snoopy ; $snoopyx->fetch($furl) ; if($snoopyx->results !="") { $handle = fopen($filename, 'w') ; fwrite($handle, $snoopyx->results) ; //把抓取得内容写到 临时文件中 fclose($handle) ; } return $filename ; } downimage("http://www.shuzipiao.com/themes/default/images/logo.gif");