PHP中的类型约束
程序员文章站
2022-04-08 22:09:38
...
本文主要介绍了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中的类型约束的详细内容,更多请关注其它相关文章!
上一篇: js实现防刷新的倒计时代码展示
推荐阅读
-
PHP5中使用PDO连接数据库的方法
-
MySQL数据库中CAST与CONVERT函数实现类型转换的讲解
-
解析:php调用MsSQL存储过程使用内置RETVAL获取过程中的return值
-
php smarty模版引擎中的缓存应用
-
在PHP中检查PHP文件是否有语法错误的方法
-
PHP中获取变量的变量名的一段代码的bug分析
-
php中static静态变量的使用方法详解
-
php 网页播放器用来播放在线视频的代码(自动判断并选择视频文件类型)
-
php中突破基于HTTP_REFERER的防盗链措施(stream_context_create)
-
在php中设置session用memcache来存储的方法总结