联系官方销售客服

1835022288

028-61286886

POSCMS分享经验 版主:论坛审计组
读取被引用的php文件的路径
类型:POSCMS 更新时间:2018-01-03 15:04:50

///取得文件路径

        $thisfilepath=dirname(__FILE__);

///赋值给模板变量

        $this->template->assign(array(

'thisfilepath'=>$thisfilepath,

        ));

        

<!--模板中调用显示-->

{$thisfilepath}

回帖
  • xgocn
    #1楼    xgocn
    2018-01-03 15:04:50
    0

    结合帮助

    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是网站的主域名