PHP类中的函数文字

前端之家收集整理的这篇文章主要介绍了PHP类中的函数文字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
请看一下这段代码
$array = array(
    'action' => function () { echo "this works"; }
);

class Test {
    public $array = array(
        "action" => function () { echo "this doesn't"; }
    );
}

第一个函数literal解析正常,但第二个 – 类中的一个 – 触发语法错误

Parse error: Syntax error,unexpected ‘function’ (T_FUNCTION)…

有人可以向我解释一下吗?这是一个错误吗?

编辑:这是最新的PHP:5.6.6

从课堂上来看它是一个属性

属性规则:

Declaration may include an initialization,but this
initialization must be a constant value–that is,it must be able to
be evaluated at compile time and must not depend on run-time
information in order to be evaluated.

http://php.net/manual/en/language.oop5.properties.php

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

猜你在找的PHP相关文章