标签:val amazon 成员 exp 编译 var manual 类成员 解析
今天这篇文章主要是在项目中遇到了一个小问题: 结果一直报错: PHP Fatal error: Constant expression contains invalid operations in.
想了一下,估计是static的问题。
静态声明是在编译时解析的。http://php.net/manual/zh/language.variables.scope.php
如果在声明中用表达式的结果对其赋值会导致解析错误。
<?php
function foo(){
static $int = 0; // correct
static $int = 1+2; // wrong (as it is an expression)
static $int = sqrt(121); // wrong (as it is an expression too)
$int++;
echo $int;
}
?>
然后类似的还有初始化类成员变量
<?php
namespace App;
class Amazon{
protected $serviceURL = config(‘api.amazon.service_url‘);
public function __construct()
{
}}
解决方案
<?php
namespace App;
class Amazon
{
protected $serviceURL;
public function __construct()
{
$this->serviceURL = config(‘api.amazon.service_url‘);
}
}
总结:static变量的初始化不能使用表达式的结果
static Constant expression contains invalid operat
标签:val amazon 成员 exp 编译 var manual 类成员 解析
原文地址:http://blog.51cto.com/fulin0532/2152196