您好,登錄后才能下訂單哦!
這篇文章主要介紹php中use的用法案例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
在PHP中,如果命名空間字符串過長時,我們就使用use來相應的縮短命名空間。這也是use在PHP中的作用。下面我們就為大家介紹一下PHP中use的用法。
1、new類時,最前面無需用反斜杠。此外,use后沒有as時,縮短的命名空間默認為最后一個反斜杠后的內容。
namespace animal\dog; class Life{ function __construct(){ echo 'dog life!'; } } namespace animal\cat; class Life{ function __construct(){ echo 'cat life!'; } } new Life(); //按照代碼執行順序,這里默認animal\cat這個命名空間 new \animal\dog\Life(); //A use animal\dog; //a new dog\Life(); //B use animal\dog as d; //b new d\Life();
通過A、B行代碼比較,需要注意:
使用use后,new類時,最前面沒有反斜杠。
沒使用use時,命名空間最前面有反斜杠
通過a、b行代碼比較,可以理解:
use后沒有as時,縮短的命名空間默認為最后一個反斜杠后的內容。如上的:
use animal\dog;
相當于
use animal\dog as dog;
2.namespace后面不建議加類名,但use后可以。
//name.php namespace animal\dog; class Life{ function __construct(){ echo 'dog life!'; } } namespace animal\cat; class Life{ function __construct(){ echo 'cat life!'; } } use animal\dog\Life as dog; new dog();
如上所示,use后加上類名后,就相當于把類改了個名稱:由Life改為dog了。
上面不用as dog就會報錯:
Fatal error: Cannot use animal\dog\Life as Life because the name is already in use
因為cat下也有個一樣名稱的Life類。
可以理解為,使用use后,這個昵稱對應的類只能歸當前命名空間占有,其它命名空間下不允許存在該類。
//name.php namespace animal\dog; class Life{ function __construct(){ echo 'dog life!'; } } class Dog{ function __construct(){ echo 'dog in dog!'; } } namespace animal\cat; // class Dog{ // function __construct(){ // echo 'dog in cat!'; // } // } class Life{ function __construct(){ echo 'cat life!'; } } use animal\dog; new dog\Dog();
如上,使用了
use animal\dog; cat
通過上面代碼,我想使用use的目的效果(縮短命名空間名稱)就很明顯了。
簡單總結一下:
use就是起小名的作用,不論寫起來還是說起來都可以省不少事兒。
以上是php中use的用法案例的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。