在php中我可以得到对象方法:
$methodName="getId";
$obj->{$methodName}();
树枝中有这样的功能吗?
UPD:我想要一些:
{% set method='getId' %}
{{ obj[method]() }}
现在我使用扩展:
{{ getter(obj, method) }}
但也许有一个标准的解决方案?
在php中我可以得到对象方法:
$methodName="getId";
$obj->{$methodName}();
树枝中有这样的功能吗?
UPD:我想要一些:
{% set method='getId' %}
{{ obj[method]() }}
现在我使用扩展:
{{ getter(obj, method) }}
但也许有一个标准的解决方案?