通过使用面向对象的 Php 概念,这是根据给定条件执行的代码块。计数器应该从 0 1 2 3 4 5 开始计数,直到达到指定的数字...但这里不是按预期工作
//考虑下面的代码
class Counter{
public $number;
public function setCounter($number){
$this->number = $number;
for($this->number ;$this->number < 10 ; $this-> number ++){
}
}
public function getCounter(){
echo $this->number;
}
}
$counter= new Counter();
$counter->setCounter(0);
$counter->getCounter();
肥皂起泡泡