本篇文章為大家介紹一下學習方法參數類型宣告的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
不管從事什麼行業,現在都是活到老學到老的趨勢,特別是我們這堆碼農。這回也不用說新技術用不上,光光是PHP文檔的學習都會發現非常多的知識點其實自己並沒有真正的掌握,比如說這個方法參數的類型聲明。
上次文章中,關於PHP的方法參數類型約束,我們說過方法參數的型別約束僅限於類別、介面、陣列或callable回呼函數,其實這是不嚴謹的,PHP中也有一個嚴格模式的定義,如果指定了嚴格模式的話,普通的為方法參數類型指定普通的標量類型也是有效果的。
嚴格模式的定義:
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
在嚴格模式下,很明顯地看出現在這個方法的參數只能接收int 類型的值了,其他的型別都無法接收,當然也不會像之前文章說過的會發生強制轉換。
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 的超集,所以這裡是可以傳整數過來的,不過上面的testInt(int $a) 則不能接收1.1 這樣的float 值。這就牽涉到了上下轉換的問題,向超集轉換是OK的,但超集向子集轉換是就不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
這個就不用過多解釋了,在非嚴格模式下我們如果定義string 類型的接收參數的話,其實是任何類型都可以接收過來做為string 類型的,這裡的類型轉換就不多說了,可以說在非嚴格模式下定義string 類型的效果跟沒有任何定義是一樣的。但是嚴格模式下就不同了,真的只能接收雙引或單引號內的字串內容。
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 關鍵字的值。
最後來介紹個新傢伙,除了普通模式下的類別、陣列、回呼函數,嚴格模式下的各種標量類型聲明外,還有一個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
沒錯,它包含了陣列、實作迭代器介面的類別以及生成器相關的內容。也就是所有可用 foreach 迭代的內容都可以傳遞過來。生成器本身會是一個 Generator 對象,而在學習PHP生成器的使用這篇文章中,我們已經看過這個 Generator 物件的內容,它本身也是實作了 Iterator 介面。
就像開頭說過的,原來在嚴格模式下我們的文法還會有這麼大的差異,這回真的是長見識了。我們的學習之路還很長,也希望各位能持續關註一起加油! !
測試程式碼:
https://github.com/zhangyue0503/dev-blog/blob/master/php/202003/source/%E5%86%8D%E6%AC%A1%E5%AD%A6%E4%B9%A0%E6%96%B9%E6%B3%95%E5%8F%82%E6%95%B0%E7%B1%BB%E5%9E%8B%E5%A3%B0%E6%98%8E.php
推薦學習:php影片教學
#以上是如何學習方法參數型別聲明的詳細內容。更多資訊請關注PHP中文網其他相關文章!