类定义中的PHP字符串连接

时间:2011-12-25 21:23:13

标签: php string class concatenation php-5.2

  

可能重复:
  Initializing PHP class property declarations with simple expressions yields syntax error

是否可以在PHP 5.2.17中实现以下目标?

$basePath = '/final';

class Foo {
    public $data = $basePath . '/data';
}

1 个答案:

答案 0 :(得分:5)

属性的默认值必须在源中常量,例如字符串和数组文字。没有表达。

使用__construct()方法处理更复杂的事情。