迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
///取得文件路径
$thisfilepath=dirname(__FILE__);
///赋值给模板变量
$this->template->assign(array(
'thisfilepath'=>$thisfilepath,
));
<!--模板中调用显示-->
{$thisfilepath}
结合帮助
CMS的URL结构采用标准“查询字符串”方法,结构如下
1、后台URL
http://localhost/admin.php?c=控制器名称&m=方法名称
对应程序文件:/diy/dayrui/controllers/admin/控制器名称.php
2、会员URL
http://localhost/index.php?s=member&c=控制器名称&m=方法名称
对应程序文件:/diy/module/member/controllers/控制器名称.php
3、前端URL
http://localhost/index.php?c=控制器名称&m=方法名称
对应程序文件:/diy/dayrui/controllers/控制器名称.php
其中localhost是网站的主域名
结合帮助
CMS的URL结构采用标准“查询字符串”方法,结构如下
1、后台URL
http://localhost/admin.php?c=控制器名称&m=方法名称
2、会员URL
http://localhost/index.php?s=member&c=控制器名称&m=方法名称
3、前端URL
http://localhost/index.php?c=控制器名称&m=方法名称
其中localhost是网站的主域名