php:声明函数的参数类型

前端之家收集整理的这篇文章主要介绍了php:声明函数的参数类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用声明的参数类型来创建一个函数快速检查它们是否是正确的格式,但是当一个字符串返回allway的错误
可能的致命错误:参数2传递给myfunction()必须是一个字符串,字符串给定的实例,在第69行的path_to_file中调用,并在第49行的path_to_file中定义
function myfunction( array $ARRAY,string $STRING,int $INTEGER ) { 
    return "Args format correct"; 
}
myfunction(array("1",'2','3','4'),"test",1234);

错误在哪里?

根据 the PHP5 documentation

Type Hints can only be of the object and array (since PHP 5.1) type. Traditional type hinting with int and string isn’t supported.

由于string和int不是类,因此您不能在函数中“输入 – 提示”它们.

原文链接:https://www.f2er.com/php/130996.html

猜你在找的PHP相关文章