本篇內(nèi)容介紹了“php的方法參數(shù)類型有哪些”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
站在用戶的角度思考問題,與客戶深入溝通,找到雨花臺網(wǎng)站設(shè)計與雨花臺網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名與空間、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋雨花臺地區(qū)。
嚴格模式的定義:
declare (strict_types = 1);
function testInt(int $a) { echo $a, PHP_EOL; } testInt(1); // testInt(1.1); // Fatal error: Uncaught TypeError: Argument 1 passed to testInt() must be of the type int // testInt('52AABB'); // Fatal error: Uncaught TypeError: Argument 1 passed to testInt() must be of the type int // testInt(true); // Fatal error: Uncaught TypeError: Argument 1 passed to testInt() must be of the type int
在嚴格模式下,很明顯地看出現(xiàn)在這個方法的參數(shù)只能接收 int 類型的值了,其他的類型都無法接收,當然也不會像之前文章說過的那樣會發(fā)生強制轉(zhuǎn)換。
function testFloat(float $a) { echo $a, PHP_EOL; } testFloat(1); testFloat(1.1); // testFloat('52AABB'); // Fatal error: Uncaught TypeError: Argument 1 passed to testInt() must be of the type int // testInt(true); // Fatal error: Uncaught TypeError: Argument 1 passed to testInt() must be of the type int
這里需要注意的是,PHP只有 int 和 float,而且 float 是 int 的超集,所以這里是可以傳整數(shù)過來的,不過上面的 testInt(int $a) 則不能接收 1.1 這樣的 float 值。這就涉及到了上下轉(zhuǎn)換的問題,向超集轉(zhuǎn)換是OK的,但是超集向子集轉(zhuǎn)換是就不OK了。
function testString(string $a) { echo $a, PHP_EOL; } // testString(1); // Fatal error: Uncaught TypeError: Argument 1 passed to testString() must be of the type string // testString(1.1); // Fatal error: Uncaught TypeError: Argument 1 passed to testString() must be of the type string testString('52AABB'); // testString(true); // Fatal error: Uncaught TypeError: Argument 1 passed to testString() must be of the type string
這個就不用過多解釋了,在非嚴格模式下我們?nèi)绻x string 類型的接收參數(shù)的話,其實是任何類型都可以接收過來做為 string 類型的,這里的類型轉(zhuǎn)換就不多說了,可以說在非嚴格模式下定義 string 類型的效果跟沒有任何定義是一樣的。但是嚴格模式下就不同了,真的是只能接收雙引或者單引號之內(nèi)的字符串內(nèi)容。
function testBool(bool $a) { var_dump($a); } testBool(true); testBool(false); // testBool('52AABB'); // Fatal error: Uncaught TypeError: Argument 1 passed to testBool() must be of the type bool // testBool(1); // Fatal error: Uncaught TypeError: Argument 1 passed to testBool() must be of the type bool
布爾值也是同理的,這里我們也只能接收 true 和 false 關(guān)鍵字的值。
最后來介紹個新家伙,除了普通模式下的類、數(shù)組、回調(diào)函數(shù),嚴格模式下的各種標量類型聲明外,還有一個 iterable 類型的聲明,相信大家通過這個單詞也能看出來了,可迭代的類型。
function testIterable(iterable $iterator) { echo gettype($iterator), ':', PHP_EOL; foreach ($iterator as $it) { echo $it, PHP_EOL; } } testIterable([1, 2, 3]); testIterable(new ArrayIterator([1, 2, 3])); // Generator對象 testIterable((function () { yield 1; yield 2; yield 3; })()); // testIterable(1); // Fatal error: Uncaught TypeError: Argument 1 passed to testIterable() must be iterable
沒錯,它包含了數(shù)組、實現(xiàn)迭代器接口的類以及生成器相關(guān)的內(nèi)容。也就是所有可用 foreach 迭代的內(nèi)容都可以傳遞過來。生成器本身會是一個 Generator 對象,而在學(xué)習(xí)PHP生成器的使用這篇文章中,我們已經(jīng)看過這個 Generator 對象的內(nèi)容,它本身也是實現(xiàn)了 Iterator 接口。
“php的方法參數(shù)類型有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!