-
-
require_once('snoopy.class.php'); - //http://www.abc.com/bdp.php?shareid=29160&uk=2855065916
- $url = 'http://pan.baidu.com/share/link?shareid=' . $_GET['shareid'] . '&uk=' . $_GET['uk'];
- $snoopy = new Snoopy();
- $snoopy -> read_timeout = 0;
- $snoopy -> fetch($url);
- $n = $snoopy -> results;
- $regex = '/(_.src=")(.+)(";)/';
- $match = '';
- preg_match($regex, $n, $match);
if(preg_match('/.gif/', $match[2])){
- header("Content-type: image/gif");
- imagegif(imagecreatefromgif($match[2]));
- }elseif(preg_match('/.jpg/', $match[2])){
- header("Content-type: image/jpeg");
- imagejpeg(imagecreatefromjpeg($match[2]));
- }elseif(preg_match('/.png/', $match[2])){
- header("Content-type: image/png");
- imagepng(imagecreatefrompng($match[2]));
- }elseif(preg_match('/.wbmp/', $match[2])){
- header("Content-type: image/vnd.wap.wbmp");
- imagewbmp(imagecreatefromwbmp($match[2]));
- }else{}
- ?>
-
复制代码
snoopy.class.php是一个php类,用来模仿web浏览器的功能,它能完成获取网页内容和发送表单的任务。
这个文件自己搜索下载吧。以上文件需要一个支持PHP的空间。百度网盘上传图片并发布分享,取得分享地址后的 shareid=29160&uk=2855065916 参数。
使用 http://你的域名/bdp.php?shareid=29160&uk=2855065916 得到图片,这个地址可以放在CKEditor图像地址中使用。其它编辑器应该也可以。
网页中直接使用: 。
|