php7 void 返回类型不起作用?
我在php7中的返回类型有问题,特别是“ void”。
它与所有其他类型,int,string,null,null,bool,class对象一起使用。
但是,当我使用void时,它希望我返回对象的实例,但实际上,它不应该期望任何返回。 p>
这是代码:
993408687
和错误消息是:
639445422
Void 返回类型适用于 PHP 7.1(您提出此问题时尚未发布)。 来自 RFC
Version: 0.2.1
Date: 2015-02-14 (v0.1, later withdrawn), 2015-10-14 (v0.2, revival)
Author: Andrea Faulds, [email protected]
Status: Implemented (PHP 7.1)
我刚刚在这里找到了答案: https://wiki.php.net/rfc/void_return_type
它将成为 PHP 7.1 中的一项功能
没有,直到 PHP 7.1 为止。对于 PHP 7.0,您必须完全省略
void
函数/方法的返回类型。
function printLn($a) {
echo "$a\n";
}
不幸的是,您无法确保此函数/方法的类型安全,并且如果您开始从中返回某些内容,则不会抛出
TypeError
。
幸运的是, PHP 7.1 修复了此问题 :
Support for a new void return type is added. It requires that a function not return any value.
这是 PHP 7.1 的正确语法 :
function should_return_nothing(): void {
return 1; // Fatal error: A void function must not return a value
}
这在 创建返回类型的提案期间被推迟提示 :
We keep the current type options . Past proposals have suggested new types such as void, int, string or scalar; this RFC does not include any new types. Note that it does allow self and parent to be used as return types. ...
Future Work
Ideas for future work which are out of the scope of this RFC include :
- Allow functions to declare that they do not return anything at all (void in Java and C)
NULL
也不允许作为返回类型。