這篇文章主要介紹php中namespace use怎么用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)是專業(yè)的涉縣網(wǎng)站建設(shè)公司,涉縣接單;提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行涉縣網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!具體如下:
現(xiàn)在說這個(gè)感覺有點(diǎn)過時(shí)了,但是感覺用namespace的人還是不多,估計(jì)還是因?yàn)椴涣?xí)慣吧。
class把一個(gè)一個(gè)function組織起來,namespace可以理解成把一個(gè)一個(gè)class,function等有序的組織起來。個(gè)人覺得,namespace的主要優(yōu)勢有
第一,可以更好的管理代碼
第二,文件一多,可以避免class,function的重名
第三,代碼可讀性增強(qiáng)了
1. 定義namespace
namespace userCenter; //php代碼 namespace userCenter\register; //php代碼 namespace userCenter\login { //php代碼 }
命名空間不能嵌套或在同一代碼處聲明多次(只有最后一次會被識別)。但是,你能在同一個(gè)文件中定義多個(gè)命名空間化的代碼,比較合適的做法是每個(gè)文件定義一個(gè)命名空間(可以是相同命名空間)。
2. 調(diào)用namespace
\userCenter\register; //絕對調(diào)用 userCenter\login; //相對調(diào)用 use userCenter\register; //引用空間 use userCenter\register as reg; //引用空間并加別名
3. 實(shí)例說明
login.class.php
<?php namespace userCenter; function check_username(){ echo "login OK<br>"; } class login{ public function save(){ echo "login had saved<br>"; } } ?>
regist.class.php
<?php namespace userCenter\regist { function check_username() { echo "regist OK<br>"; } class regist{ public function save(){ echo "regist had saved<br>"; } } } ?>
test.php
<?php require "login.class.php"; require "regist.class.php"; use userCenter\regist; //使用use調(diào)用空間 use userCenter\regist as reg; //as定義別名 echo \userCenter\check_username(); //絕對調(diào)用 $login = new \userCenter\login(); echo $login->save(); echo regist\check_username(); //相對調(diào)用 echo reg\check_username(); //別名調(diào)用 $regist = new reg\regist(); echo $regist->save();
使用use,比絕對調(diào)用要好一點(diǎn),好比給class,function等加了一個(gè)前綴,這樣看起來就比較清楚了。
以上是“php中namespace use怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
分享標(biāo)題:php中namespaceuse怎么用-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://muchs.cn/article36/dooipg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、面包屑導(dǎo)航、ChatGPT、微信小程序、搜索引擎優(yōu)化、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容