我正在使用声明的参数类型来创建一个函数来快速检查它们是否是正确的格式,但是当一个字符串返回allway的错误
可能的致命错误:参数2传递给myfunction()必须是一个字符串,字符串给定的实例,在第69行的path_to_file中调用,并在第49行的path_to_file中定义
可能的致命错误:参数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:
原文链接:https://www.f2er.com/php/130996.htmlType Hints can only be of the object and array (since PHP 5.1) type. Traditional type hinting with int and string isn’t supported.