本文主要介紹了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('print_r', 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 = 'Try to cast a string value for fun' ; } catch ( UnexpectedValueException $uve ) { echo $uve -> getMessage () . PHP_EOL ; } echo $int . PHP_EOL ; /* 运行结果: Value not an integer 94 */
SPL Types會降低一定的靈活性和性能,實際專案中三思而行。
相關推薦:
###一些被忽略的 PHP 函數(整理)########以上是PHP中的類型約束的詳細內容。更多資訊請關注PHP中文網其他相關文章!