溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php中use的用法案例

發(fā)布時(shí)間:2020-10-10 17:03:52 來源:億速云 閱讀:220 作者:小新 欄目:編程語言

這篇文章主要介紹php中use的用法案例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

  在PHP中,如果命名空間字符串過長時(shí),我們就使用use來相應(yīng)的縮短命名空間。這也是use在PHP中的作用。下面我們就為大家介紹一下PHP中use的用法。

1、new類時(shí),最前面無需用反斜杠。此外,use后沒有as時(shí),縮短的命名空間默認(rèn)為最后一個(gè)反斜杠后的內(nèi)容。

namespace animal\dog;
class Life{
 function __construct(){
  echo 'dog life!';
 }
}
namespace animal\cat;
class Life{
 function __construct(){
  echo 'cat life!';
 }
}
new Life(); //按照代碼執(zhí)行順序,這里默認(rèn)animal\cat這個(gè)命名空間
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類時(shí),最前面沒有反斜杠。

  沒使用use時(shí),命名空間最前面有反斜杠

  通過a、b行代碼比較,可以理解:

  use后沒有as時(shí),縮短的命名空間默認(rèn)為最后一個(gè)反斜杠后的內(nèi)容。如上的:

use animal\dog;

相當(dāng)于

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后加上類名后,就相當(dāng)于把類改了個(gè)名稱:由Life改為dog了。

  上面不用as dog就會(huì)報(bào)錯(cuò):

 Fatal error:  Cannot use animal\dog\Life as Life because the name is already in use

  因?yàn)閏at下也有個(gè)一樣名稱的Life類。

  可以理解為,使用use后,這個(gè)昵稱對(duì)應(yīng)的類只能歸當(dāng)前命名空間占有,其它命名空間下不允許存在該類。

//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的目的效果(縮短命名空間名稱)就很明顯了。

簡單總結(jié)一下:

  use就是起小名的作用,不論寫起來還是說起來都可以省不少事兒。

以上是php中use的用法案例的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI