Ben diğer iki işlevi çağıran bir işlevi vardır:
class myClass{
function myFunc(){
for($i=0;$i<500;$i++){
$this->func1();
$this->func2();
}
}
function func1(){
// Does some stuff
// echos statements, and can vary the amount of echoed statements
while($something == true)
echo "This is from func1, and may echo 0-1000 times";
}
function func2(){
// Does some stuff
// echos statements, and can vary the amount of echoed statements
while($something == true)
echo "This is from func2, and may echo 0-1000 times";
}
}
Ne yapmak istiyorum ben) fonksiyonları şey echo'd olan toplam kere almak ve bu bilgileri (MyFunc görüntülemek alabilirsiniz bir yolunu bulmak. Ben bir sayım fonksiyonu yazdım, ama beklediğimden şekilde işe yaramadı.
Herhangi bir öneriniz?