时间:2023-11-25 22:18:01 | 来源:网站运营
时间:2023-11-25 22:18:01 来源:网站运营
phpcms v9手机站单页面如何简单二次开发?:phpcms v9手机门户网站用的人比较少,所有官网也没有太多的介绍,phpcms v9手机门户是不支持单页面的调用,今天给大家介绍一下如何调取phpcms v9手机门户网站的单页。//单页面 function page() { $WAP = $this->wap; $TYPE = $this->types; $WAP_SETTING = string2array($WAP['setting']); $GLOBALS['siteid'] = max($this->siteid,1); $catid = intval($_GET['catid']); if(!$catid) exit(L('parameter_error')); $this->page_db = pc_base::load_model('page_model'); $data = $this->page_db->get_one(array('catid'=>$catid)); if(!$data) showmessage(L('info_does_not_exists'),'blank'); extract($data); include template('wap', 'page'); }
(2)在手机模板文件夹里边(/phpcms/templates/default/wap)新增page.html,就行pc站调用内容一样,直接使用pc站的代码调用,比如:{$title}、{$content}等关键词:简单