Jump to content

Array not clearing, extremely frustrating


LLLLLLL

Recommended Posts

:'(

I'm calling a function that resets a couple arrays:

 

public function resetStuff() {
$this->someArray = array();
$this->someOtherArray = array();
}

 

However, someOtherArray is not resetting!! How could that be?

 

I can add debug statements to echo the size of the arrays before and after the function calls. It shows that:

someArray went from n to 0

someOtherArray went from n to n

 

How is that possible??

You most likely have a spelling error in the actual code.

 

As always, in programming, if you want help with a problem in your actual code, you need to post the code that is actually exhibiting the problem.

 

Also, are you developing and debugging your code on a system with error_reporting set to E_ALL and display_errors set to ON so that php would help you by reporting and displaying all the errors it detects? You will save a ton of time.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.