If I declare a variable inside a foreach loop, such as:
foreach($myArray as $myData) {
$myVariable = 'x';
}
Does PHP destroy it, and re-creates it at each iteration ? In other words, would it be smarter performance-wise to do:
$myVariable;
foreach($myArray as $myData) {
$myVariable = 'x';
}
Thank you in advance for your insights.
In your first example:
$myVariable
is created during the first iteration and than overwritten on each further iteration. It will not be destroyed at any time before leaving the scope of your script, function, method, ...In your second example:
$myVariable
is created before any iteration and set to null. During each iteration if will be overwritten. It will not be destroyed at any time before leaving the scope of your script, function, method, ...Update
I missed to mention the main difference. If
$myArray
is empty (count($myArray) === 0
)$myVariable
will not be created in your first example, but in your second it will with a value of null.According to my experiment, it's the same:
prints: int(2)
prints: int(2)
According to the debugger in my IDE (NuSphere PHPed) in your first example:
$myVariable
is only created once.The problem is $myVariable is not truly local to foreach only. So it can clobber a global variable under the same name.
A way around that is make your foreach an inline anonymous function.
E.g.
This way you guarantee it will not step on other globals.