PHP中的類型約束

*文
發布: 2023-03-18 15:34:01
原創
1605 人瀏覽過

本文主要介紹了PHP中的類型約束介紹,PHP的類別方法和函數中可實現類型約束,但參數只能指定類別、陣列、介面、callable 四種類型,參數可預設為NULL,PHP並不能約束標量類型或其它類型。希望本文對大家有幫助。

PHP的類別方法和函數中可實現類型約束,但參數只能指定類別、陣列、介面、callable 四種類型,參數可預設為NULL,PHP並不能約束標量類型或其它類型。

如下範例:

<?php
 
class Test
{
    public function test_array(array $arr)
    {
        print_r($arr);
    }
 
    public function test_class(Test1 $test1 = null)
    {
        print_r($test1);
    }
 
    public function test_callable(callable $callback, $data)
    {
        call_user_func($callback, $data);
    }
 
    public function test_interface(Traversable $iterator)
    {
        print_r(get_class($iterator));
    }
 
    public function test_class_with_null(Test1 $test1 = NULL)
    {
 
    }
}
 
class Test1{}
 
$test = new Test();
 
//函数调用的参数与定义的参数类型不一致时,会抛出一个可捕获的致命错误。
 
$test->test_array(array(1));
$test->test_class(new Test1());
$test->test_callable(&#39;print_r&#39;, 1);
$test->test_interface(new ArrayObject(array()));
$test->test_class_with_null();
登入後複製

那麼對於標量型別如何約束呢?

PECL擴充函式庫中提供了SPL Types擴充實作interger、float、bool、enum、string類型約束。

$int  = new  SplInt ( 94 );
 
try {
     $int  =  &#39;Try to cast a string value for fun&#39; ;
} catch ( UnexpectedValueException $uve ) {
    echo  $uve -> getMessage () .  PHP_EOL ;
}
 
echo  $int  .  PHP_EOL ;
/*
运行结果:
Value not an integer
94
*/
登入後複製

SPL Types會降低一定的靈活性和性能,實際專案中三思而行。

相關推薦:

PHP 資料型別與判斷變數型別

PHP 函數注意

一些被忽略的 PHP 函數(整理)

###一些被忽略的 PHP 函數(整理)########

以上是PHP中的類型約束的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!