利用PHP怎么實(shí)現(xiàn)一個(gè)自動(dòng)加載功能?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
文件結(jié)構(gòu):
|--Api
|--Account.php
|--User.php
|--Service
|--Login.php
|--User.php
|--Application.php
Application.php
<?php use Api\User; use Service\User as User2; class Application{ public static function main(){ self::registe(); new User(); new User2(); } public static function registe(){ spl_autoload_register("Application::loadClass"); } public static function loadClass($class){ $class=str_replace('\\', '/', $class); $class="./".$class.".php"; require_once $class; } } Application::main();
Api\User.php
<?php namespace Api; use Service\Login; class User{ public function __construct(){ echo "User類(lèi)<br/>"; new Login(); new Account(); } }
Api\Account.php
<?php namespace Api; class Account{ public function __construct(){ echo "Account類(lèi)<br/>"; } }
Service\Login.php
<?php namespace Service; class Login{ public function __construct(){ echo "Login類(lèi)<br/>"; } }
Service\User.php
<?php namespace Service; class User{ public function __construct(){ echo "Service下的User類(lèi)<br/>"; } }
關(guān)于利用PHP怎么實(shí)現(xiàn)一個(gè)自動(dòng)加載功能問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
分享題目:利用PHP怎么實(shí)現(xiàn)一個(gè)自動(dòng)加載功能-創(chuàng)新互聯(lián)
當(dāng)前URL:http://aaarwkj.com/article44/dspsee.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)、建站公司、電子商務(wù)、網(wǎng)頁(yè)設(shè)計(jì)公司、面包屑導(dǎo)航、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容