這篇文章主要介紹了PHP命名空間namespace的定義方法,結合實例形式詳細分析了php命名空間namespace及子命名空間的定義方法與相關注意事項 ,需要的朋友可以參考下
本文實例講述了PHP命名空間namespace的定義方法。分享給大家供大家參考,具體如下:
定義命名空間
#對於空間的命名,在此我想不用文字解釋,更好的解釋是用實例來證明:
For example:
下面這段程式碼是」test.php」裡面的檔案:
namespace Test; class Test{ public function Ttest(){ echo "这是Test里面的测试方法"."<br>"; } }
接下來我要用三種不同的方式進行訪問,我把這三個訪問程序寫在一個名叫“index.php”的文件中:
#方法一:##
namespace Index; require 'test.php'; $T=new \Test\Test(); $T->Ttest();
#方法二:
namespace Index; namespace Test; require 'test.php'; $T=new Test(); $T->Ttest();
方法三:##namespace Index;
require 'test.php';
use Test\Test;
$T=new Test();
$T->Ttest();
這是Test裡面的測試方法
註:namespace Index可寫可不寫,這只是index.php檔案的空間命名。這三種方法所得結果都是一樣的。
定義子命名空間定義:
與目錄和檔案的關係很像,PHP 命名空間也允許指定層次化的命名空間的名稱。因此,命名空間的名字可以使用分層的方式來定義。
實例如下圖,這是我自訂的專案目錄:
one.php
namespace projectOne\one; class Test{ public function test(){ return "this is a test program"; } }
為了存取one.php中Test類別下的test()方法,我在Two中的程式碼如下:
Two.php
namespace projectOne\one; require '../projectOne/One.php'; $O=new Test(); echo $O->test();
Output: this is a test program
##在同一檔案中定義多個命名空間,它們之間相互訪問test.phpnamespace projectOne\one{ class test{ public function hello(){ return "helloworld"; } } } namespace projectOne\Two{ class project{ public function world2(){ return "welcome to china"; } } class project2 extends \projectOne\one\test{ public function wo(){ return "this is my test function ,it is name wo"; } } } namespace projectOne\Two{ $p=new project2(); echo $p->wo()."<br>"; echo $p->hello(); }
helloworld
以上是php namespace命名空間的定義方法實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!