迅睿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是網站的主域名