最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

thinkphp常見(jiàn)路徑用法分析

 更新時(shí)間:2014年12月02日 15:23:28   投稿:shichen2014  
這篇文章主要介紹了thinkphp常見(jiàn)路徑用法,實(shí)例分析了__PUBLIC__、__ROOT__、__APP__、__URL__、__ACTION__及__SELF__等標(biāo)簽常量的用法,需要的朋友可以參考下

本文實(shí)例分析了thinkphp常見(jiàn)路徑用法。分享給大家供大家參考。具體如下:

這里介紹的標(biāo)簽主要有: __root__ __self__ __action__ __url__ __app__ __public__

假如你項(xiàng)目首頁(yè)的URL是:www.test.com/other/Form

假如當(dāng)前模塊是:Index

假如當(dāng)前操作是:index

那么首頁(yè)完整的URL:http://www.test.com/other/Form/index.php/Index/index

1 __ROOT__:/other/thinkphp/mydemo

2 __SELF__:/other/thinkphp/mydemo/Form/index.php

3 __ACTION__: /other/thinkphp/mydemo/Form/index.php/Index/index

4 __URL__: /other/thinkphp/mydemo/Form/index.php/Index

5 __APP__: /other/thinkphp/mydemo/Form/index.php

6 __PUBLIC__:/other/thinkphp/mydemo/Public

7 ../public(不區(qū)分大小寫):/other /thinkphp/mydemo/Form/Tpl/default/Public

8 APP_PUBLIC_URL:/other/thinkphp/mydemo/Form/Tpl/default/Public

9 WEB_PUBLIC_URL:/other/thinkphp/mydemo/Public

模板中對(duì)路徑部分的操作是這樣子的:

復(fù)制代碼 代碼如下:
//項(xiàng)目公共目錄   
 $tmplContent = str_ireplace('../public',APP_PUBLIC_URL,$tmplContent);   
//網(wǎng)站公共目錄   
$tmplContent = str_replace('__PUBLIC__',WEB_PUBLIC_URL,$tmplContent);   
//網(wǎng)站根目錄   
$tmplContent = str_replace('__ROOT__',__ROOT__,$tmplContent);   
//當(dāng)前項(xiàng)目地址   
$tmplContent = str_replace('__APP__',__APP__,$tmplContent);   
 //當(dāng)前模塊地址   
$tmplContent = str_replace('__URL__',__URL__,$tmplContent);   
 //當(dāng)前項(xiàng)目操作地址   
$tmplContent = str_replace('__ACTION__',__ACTION__,$tmplContent);   
//當(dāng)前頁(yè)面操作地址   
$tmplContent = str_replace('__SELF__',__SELF__,$tmplContent);

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《smarty模板入門基礎(chǔ)教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

南投县| 石渠县| 杭锦后旗| 仙桃市| 镇远县| 上林县| 上高县| 峡江县| 紫云| 莫力| 汤阴县| 承德县| 沁阳市| 辽宁省| 武穴市| 丁青县| 陵川县| 临颍县| 南靖县| 洱源县| 雅安市| 张掖市| 隆林| 临汾市| 富宁县| 鸡泽县| 交城县| 拉萨市| 丘北县| 西峡县| 镇江市| 娱乐| 扶风县| 茂名市| 陆河县| 化德县| 平凉市| 舞钢市| 车致| 北安市| 城步|