實現PHP中類的自動載入的兩種方法分享

來源:互聯網
上載者:User
本篇文章主要介紹了PHP中類的自動載入的方法。類的自動載入是指在外面的頁面中並不需要去“引入”類檔案,但是程式會在需要的時候動態載入需要的類檔案。

類的自動載入是指,在外面的頁面中,並不需要去“引入”類檔案,但是程式會在需要的時候動態載入需要的類檔案。

方法1:使用autoload魔術函數

當程式需要某個類時,就會去調用該函數,該函數我們需要自己去定義並在其中寫好載入類檔案的通用語句。

<?php    //需要類是自動調用,而且會傳進來一個類名,這個案例的檔案名稱為21A.class.php,類名為A     function autoload($className){      require "./21".$className.".class.php";    }    $o1 = new A();    $o1->v1 = 10;    echo "<br/>v1:".$o1->v1;  ?>

方法2:使用spl_autoload_register函數

該函數的作用是生命多個可以用來代替autoload函數作用的函數,文法如下:spl_autoload_regist("函數名1");如果用spl_autoload_register,autoload就失效了。

<?php    //註冊兩個用於自動載入的函數名    spl_autoload_register('auto1');    spl_autoload_register('auto2');    function auto1($className){      $file = "./21".$className.".class.php";      if(file_exists($file)){        require "./21".$className.".class.php";      }    }    function auto1($className){      $file = "./22".$className.".class.php";      if(file_exists($file)){        require "./22".$className.".class.php";      }    }    //如果需要一個雷,但這個頁面還沒有記載,就會依次調用auto1和auto2,知道找到該類檔案並載入  ?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.