我需要一些函数或解决方案来保存函数中变量的值,直到下一次调用函数而不连接到 MySQL。
function test($price){
if(isset($lastPrice)){
if($lastPrice>$price){
return true;
}
$lastPrice = $price;
}else{
$lastPrice = $price;
returne false;
}
}
$prices= array ( '1' => '2000',
'2' => '2100',
'3' => '2100'
);
foreach($prices as $key = > $price){
if($this->test($price)){
echo 'got expensive';
}
}
在这段代码中,我需要保存 $lastPrice 直到下一次 test() 在 foreach 中被调用,...