<div dir="ltr">Hi,<div class="gmail_extra"><br><div class="gmail_quote">2014-02-14 23:21 GMT+01:00 Minhaz A V <span dir="ltr"><<a href="mailto:minhazav@gmail.com" target="_blank">minhazav@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr">Hi,<div>I was going through the codes and at many places I found use of <b>count() </b>inside the <b>for</b> statement.</div><div>I think statements like </div><div><br></div><div><b>for($i = 0; $i < count($arr); $i++)</b><br clear="all">



<div><div dir="ltr"><div>should be converted with statements like</div><div><br></div><div><b>$len = count($arr);</b></div><div><b>for($i = 0; $i < $len; $i++)</b><br></div><div><b><br></b></div><div>this would help us speed up the whole phpMyAdmin system.</div>

</div></div></div></div></blockquote><div><br></div><div>You're right. The second write is better. But as you said in your second mail, we try to avoid the first syntax.</div><div>If you find the use of count into a loop, please fix it a send a pull request.</div>

<div><br></div><div>Thanks,</div><div>Hugues. <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div dir="ltr">

<div><br></div><div><br></div><div>Regards,</div><font color="#666666">Minhaz</font><div><font color="#666666"><a href="http://cistoner.org" target="_blank">cistoner.org</a></font></div></div></div>
</div></div>
<br></blockquote></div></div></div>