Welcome Guest, Not a member yet? Register   Sign In
Why crash my code?
#10

Using count in the loop it is called each iteration it loops through the code.

Example from php.net:

PHP Code:
<?php
/*
 * This is an array with some data we want to modify
 * when running through the for loop.
 */
$people = array(
    array('name' => 'Kalle''salt' => 856412),
    array('name' => 'Pierre''salt' => 215863)
);

for(
$i 0$i count($people); ++$i) {
    $people[$i]['salt'] = mt_rand(000000999999);


The above code can be slow, because the array size is fetched on every iteration.
Since the size never changes, the loop be easily optimized by using an intermediate
variable to store the size instead of repeatedly calling count():


This is the correct way of doing it.

PHP Code:
<?php
/*
 * This is an array with some data we want to modify
 * when running through the for loop.
 */
$people = array(
    array('name' => 'Kalle''salt' => 856412),
    array('name' => 'Pierre''salt' => 215863)
);

$count count($people);

for(
$i 0$i $count; ++$i) {
    $people[$i]['salt'] = mt_rand(000000999999);

What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Why crash my code? - by omid_student - 03-01-2020, 01:15 AM
RE: Why crash my code? - by jreklund - 03-01-2020, 03:00 AM
RE: Why crash my code? - by omid_student - 03-01-2020, 03:27 AM
RE: Why crash my code? - by zahhar - 03-02-2020, 01:42 AM
RE: Why crash my code? - by omid_student - 03-02-2020, 09:45 AM
RE: Why crash my code? - by tweenietomatoes - 03-02-2020, 12:43 PM
RE: Why crash my code? - by InsiteFX - 03-02-2020, 02:02 PM
RE: Why crash my code? - by omid_student - 03-02-2020, 02:57 PM
RE: Why crash my code? - by nonebeliever - 03-03-2020, 03:26 AM
RE: Why crash my code? - by InsiteFX - 03-03-2020, 04:26 AM
RE: Why crash my code? - by omid_student - 03-03-2020, 05:50 AM
RE: Why crash my code? - by zahhar - 03-04-2020, 04:35 AM
RE: Why crash my code? - by omid_student - 03-04-2020, 05:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB