2010
12-25
12-25
What empty foreach do in PHP
While ago I was fighting with one bug. There was code witch was working, but stop working when I add empty foreach.
(more…)
//that work with rest of code function fun(){ //... return $table; } //that do not work with rest of code function fun(){ //... foreach( $table as $key => $val ){} return $table; }