我无法将值从另一个函数发送到 yii 中的另一个函数。这两个函数都在同一个文件中,yii 中的一个模型。下面是代码。
public function totalPointsValue($userId) {
$value = Yii::app()->db->createCommand()
->select('sum(totalPoints) as pointsSum')
->from('fndn_UserTotal')
->where('userId =:id', array(':id'=>$userId))
//->where('userId = ' . $userId)
->queryRow();
$totalPoints = $value['pointsSum'];
}
public function checkEligable(){
totalPointsValue($userId);
error_log(print_r($totalPoints, true), 3, 'debug.log');
}
是否可以将值从 totalPointsValue() 发送到 checkEligable() ?