我需要帮助将$total
变量转换为return $seed = ( rand('1','10') * $seed + 5) % $this->total;
。有人能帮我吗?
public function index()
{
$total = $this->m_soal->count_soal();
function lcm_rand($seed) {
return function() use (& $seed ) {
return $seed = ( rand('1','10') * $seed + 5) % $this->total;
};
}
}
1条答案
按热度按时间abithluo1#
不知道为什么你会需要内部函数,但也许像这样的东西会帮助你。