【发布时间】:2015-01-30 22:09:28
【问题描述】:
在 PhalconPHP 中,我进行如下查询:
$result = Model::callSomeModelFunction($param);
如何重新查询 $result,是否有类似的可能? :
$result = $result->filterOnceMoreWithNewParam($anotherParam);
或者我是否必须在第一行使用它:
$result = Model::callSomeOtherModelFunction($param, $anotherParam);
【问题讨论】: