| 123456789101112131415161718192021222324252627282930313233343536 | <?phpnamespace Content\Lib;use Dever;class Article{    # 根据文章id 获取文章信息    public function get($data)    {        if (!is_array($data)) {            $data = Dever::db('content/article')->one($data);        }                if (!$data) {            Dever::alert('错误的文章信息');        }            //embed        $data['content_array'] = array();        if (strstr($data['content'], 'embed')) {            //print_r($data['content']);die;            preg_match_all('/<embed src="(.*?)"(.*?)\/>/i', $data['content'], $matches);            if (isset($matches[1])) {                foreach ($matches[1] as $k => $v) {                }            }            //print_r($matches);die;        }                return $data;    }}
 |