| #417 | if(empty($cms_content['pic']) && $imagenum && $auto_pic) { |
| #418 | $cms_content['pic'] = $this->auto_pic($table, $uid, 0, $models); |
| #419 | } |
| #420 | |
| #421 | //开启自动缩略图,匹配内容里面的图片(这里不生成缩略图小图,直接是完整的图片网址) |
| #422 | if(empty($cms_content['pic']) && $auto_pic){ |
| #423 | $pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png]))[\'|\"].*?[\/]?>/"; |
| #424 | preg_match_all($pattern, $contentstr, $match); |
| #425 | if( isset($match[1]) && isset($match[1][0]) ){ |
| #426 | $match_pic = $match[1][0]; |