亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php的方法參數類型有哪些

發布時間:2021-06-22 16:49:54 來源:億速云 閱讀:221 作者:chen 欄目:編程語言

本篇內容介紹了“php的方法參數類型有哪些”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

嚴格模式的定義:

declare (strict_types = 1);

int 類型

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 類型的值了,其他的類型都無法接收,當然也不會像之前文章說過的那樣會發生強制轉換。

float 類型

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了。

string 類型

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 類型的效果跟沒有任何定義是一樣的。但是嚴格模式下就不同了,真的是只能接收雙引或者單引號之內的字符串內容。

bool 類型

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 類型

最后來介紹個新家伙,除了普通模式下的類、數組、回調函數,嚴格模式下的各種標量類型聲明外,還有一個 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 接口。

“php的方法參數類型有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

阜宁县| 通许县| 陕西省| 沙河市| 山阳县| 泌阳县| 华容县| 巴里| 隆回县| 本溪市| 乃东县| 石首市| 杭锦后旗| 宁阳县| 丰顺县| 阿图什市| 芷江| 耿马| 昌江| 法库县| 青州市| 遂溪县| 林州市| 克东县| 昔阳县| 丘北县| 丹江口市| 大安市| 民和| 平阴县| 涞水县| 蒙自县| 东丰县| 青河县| 罗田县| 黎城县| 林州市| 大厂| 读书| 湖口县| 福泉市|