phpcms 添加稿件到栏目 add_content

private $db;
private $content_model;
public function __construct() {
	parent::__construct ();
	$this->content_model = pc_base::load_model('content_model');
	$this->siteid = 1;
}


public function add(){
    $info['title']='标题';
    $info['description']='摘要';
    $info['content']='内容';
    $info['thumb']='缩略图';
    $info['catid']=$catid;
    $retid=$this->content_model->add_content($info);
}

 

posted @ 2018-05-10 17:02  zhuzhipeng  阅读(208)  评论(0编辑  收藏  举报