PHP中的use、命名空間、引入類檔案、自動載入類的理解

來源:互聯網
上載者:User

標籤:href   echo   作用   引入   client   hello   函數   htm   載入類   

use只是使用了命名空間,
但是要想調用類,必須要載入類檔案,或者自動載入。

即便是引入了其中一個類,如果沒有自動載入機制,還是會報錯

use的幾種用法

namespace Blog\Article;class Comment { }//建立一個BBS空間(我有打算開個論壇)namespace BBS;//匯入一個命名空間use Blog\Article;//匯入命名空間後可使用限定名稱調用元素$article_comment = new Article\Comment();//為命名空間使用別名use Blog\Article as Arte;//使用別名代替空間名$article_comment = new Arte\Comment();//匯入一個類use Blog\Article\Comment;//匯入類後可使用非限定名稱調用元素$article_comment = new Comment();//為類使用別名use Blog\Article\Comment as Comt;//使用別名代替空間名$article_comment = new Comt();

1.第一種引入方式(前提是有了自動載入機制)

use OSS\OssClient; // 表示引入Class ‘OSS\OssClient‘

使用的時候,

$ossClient = new OSS\OssClient($accessKeyId, $accessKeySecret, $endpoint, false);

或者這樣

$ossClient = new OssClient($accessKeyId, $accessKeySecret, $endpoint, false);

都可以!

2.第二種引入方式(前提是有了自動載入機制)

import(‘@.ORG.OSS.OssClient‘); // thinkphp中的載入機制

使用的時候,只能

$ossClient = new OSS\OssClient($accessKeyId, $accessKeySecret, $endpoint, false);  // 其中OSS是命名空間

thinkphp中有一種自動載入命名空間的機制,

架構Liberary目錄下的命名空間都可以自動識別和定位,如下

Library 架構類庫目錄
│ ├─Think 核心Think類庫包目錄
│ ├─Org Org類庫包目錄
│ ├─ ... 更多類庫目錄

所以,如果有命名空間,不需要引入檔案也可以。
但是沒有命名空間的類,如果不引入檔案,就會報錯。

import一下就可以了,

3.__autoload

這是一個自動載入函數,在PHP5中,當我們執行個體化一個未定義的類時,就會觸發此函數。看下面例子:

printit.class.php  <?php  class PRINTIT {   function doPrint() {  echo ‘hello world‘; }}?>  index.php  <?function __autoload( $class ) { $file = $class . ‘.class.php‘;   if ( is_file($file) ) {    require_once($file);   }}  $obj = new PRINTIT();$obj->doPrint();?>

運行index.php後正常輸出hello world。在index.php中,由於沒有包含printit.class.php,在執行個體化printit時,自動調用__autoload函數,參數$class的值即為類名printit,此時printit.class.php就被引進來了。

4.spl_autoload_register
再看spl_autoload_register(),這個函數與__autoload有與曲同工之妙,看個簡單的例子:

<?function loadprint( $class ) { $file = $class . ‘.class.php‘;   if (is_file($file)) {    require_once($file);   } }  spl_autoload_register( ‘loadprint‘ );  $obj = new PRINTIT();$obj->doPrint();?>

將__autoload換成loadprint函數。但是loadprint不會像__autoload自動觸發,這時spl_autoload_register()就起作用了,它告訴PHP碰到沒有定義的類就執行loadprint()。

spl_autoload_register() 調用靜態方法 ,

 

<?  class test { public static function loadprint( $class ) {  $file = $class . ‘.class.php‘;    if (is_file($file)) {     require_once($file);    }  }}  spl_autoload_register(  array(‘test‘,‘loadprint‘)  );//另一種寫法:spl_autoload_register(  "test::loadprint"  );  $obj = new PRINTIT();$obj->doPrint();?>

原文www.cnblogs.com/jiqing9006/p/5406994.html

 

PHP中的use、命名空間、引入類檔案、自動載入類的理解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.