Jump to content

Recommended Posts

What do you think is the best way ?

 

I am testing two arrays to see if the corresponding values are empty or not

 

for($t=0;$t<count($array1);$T++){
if(empty($array1[$t]) AND empty($array2[$t])){}
if(empty($array1[$t]) AND !empty($array2[$t])){}
if(!empty($array1[$t]) AND empty($array2[$t])){}
if(!empty($array1[$t]) AND !empty($array2[$t])){}
}

 

OR

for($t=0;$t<count($array1);$T++){
  if(empty($array1[$t]){
    if(empty($array2[$t]){
    //empty($array1[$t]) AND empty($array2[$t]
    }else{
    //empty($array1[$t]) AND !empty($array2[$t]
    }
  }else{
  if(!empty($array2[$t])){
    //!empty($array1[$t]) AND !empty($array2[$t]
    }
  }

 

what would be the fastest code ?

the first one is a lot more readable I think than the second one but I would guess that the second one would be more faster.

could you also explain why you think which code would be better ?

 

 

thank you

anatak

neither best is using if statements properly!

 

for($t=0;$t<count($array1);$T++){
  if(empty($array1[$t]) AND empty($array2[$t])){
  } elseif(empty($array1[$t]) AND !empty($array2[$t])){
  } elseif(!empty($array1[$t]) AND empty($array2[$t])){
  } elseif(!empty($array1[$t]) AND !empty($array2[$t])){
  }
}

 

^ thats the fastest because it may only check the first if then exit.. to next loop

or it may check 2 if's and exit..

but if you add a bunch of if's it will check them all!

 

Unless you want them to all be checked?

neither best is using if statements properly!

 

for($t=0;$t<count($array1);$T++){
  if(empty($array1[$t]) AND empty($array2[$t])){
  } elseif(empty($array1[$t]) AND !empty($array2[$t])){
  } elseif(!empty($array1[$t]) AND empty($array2[$t])){
  } elseif(!empty($array1[$t]) AND !empty($array2[$t])){
  }
}

 

^ thats the fastest because it may only check the first if then exit.. to next loop

or it may check 2 if's and exit..

but if you add a bunch of if's it will check them all!

 

Unless you want them to all be checked?

 

 

I am such an idiot

why didn't I think about elseif()

thanks

I also thinks this is the most readable solution

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.