這篇文章主要介紹了php如何獲取方法名稱的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇php如何獲取方法名稱文章都會(huì)有所收獲,下面我們一起來看看吧。
創(chuàng)新互聯(lián)專注于網(wǎng)站建設(shè)|網(wǎng)站建設(shè)維護(hù)|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計(jì)與制作經(jīng)驗(yàn),為許多企業(yè)提供了網(wǎng)站定制設(shè)計(jì)服務(wù),案例作品覆蓋iso認(rèn)證等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身開發(fā)品質(zhì)網(wǎng)站。
獲取方法:1、使用“__FUNCTION__”,可獲取當(dāng)前方法的名稱;2、使用“__METHOD__”,可獲取當(dāng)前的方法名(包括類名);3、使用get_class_methods()函數(shù),可獲取指定類的所有的方法名。
本教程操作環(huán)境:windows7系統(tǒng)、PHP7.1版、DELL G3電腦
php獲取方法名稱
1、使用魔術(shù)常量__FUNCTION__
__FUNCTION__:當(dāng)前函數(shù)(或方法)的名稱;
<?php header("Content-type:text/html;charset=utf-8"); class Website { public function demo() { echo '成員方法名'.__FUNCTION__; } } $student = new Website(); $student -> demo(); ?>
2、使用魔術(shù)常量__METHOD__
__METHOD__:當(dāng)前的方法名(包括類名);返回該方法被定義時(shí)的名字(區(qū)分大小寫)。
<?php header("Content-type:text/html;charset=utf-8"); class Website { public function demo() { echo '類名+方法名'.__METHOD__; } } $student = new Website(); $student -> demo(); ?>
3、get_class_methods()函數(shù)
get_class_methods — 獲取類的所有的方法名,并且組成一個(gè)數(shù)組
get_class_methods(mixed $class_name): array
返回由 class_name 指定的類中定義的方法名所組成的數(shù)組。如果出錯(cuò),則返回 null。
示例:
<?php class myclass { // constructor function myclass() { return(true); } // method 1 function myfunc1() { return(true); } // method 2 function myfunc2() { return(true); } } $class_methods = get_class_methods('myclass'); // or $class_methods = get_class_methods(new myclass()); foreach ($class_methods as $method_name) { echo "$method_name <br>"; } ?>
關(guān)于“php如何獲取方法名稱”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“php如何獲取方法名稱”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)頁標(biāo)題:php如何獲取方法名稱
網(wǎng)站地址:http://jinyejixie.com/article6/pppiog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、軟件開發(fā)、響應(yīng)式網(wǎng)站、網(wǎng)站導(dǎo)航、動(dòng)態(tài)網(wǎng)站、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)