12# weixinjoy
楼主的插件有点错误
那个cp_share.php里面的getflashimg函数缺少返回值,应该修改如下:- function getflashimg($link, $host) {
- $return='';
- $content = file_get_contents($link);//获取
- if('tudou.com' == $host)
- {
- preg_match_all("/<span class="s_pic">(.*?)<\/span>/i",$content,$img);
- }
- elseif('youku.com' == $host)
- {
- preg_match_all("/\+0800\|(.*?)\|">/i",$content,$img);
- //$img = $img[1][0];
- }
- elseif('ku6.com' == $host)
- {
- preg_match_all("/<span class="s_pic">(.*?)<\/span>/i",$content,$img);
- }
- elseif('mofile.com' == $host)
- {
- preg_match_all("/thumbpath="(.*?)";/i",$content,$img);
- }
- $img = $img[1][0];
- if($img){
- $return = $img;
- }
- return $return;
- }
复制代码 |