This is a discussion on array always new within the alt.comp.lang.php forums, part of the PHP Programming Forums category; solution A 0 1 $myarray=array(); 2 .. code that fill $myarray; ------------------------------------ solution B 0 1 unset($myarray); 2 .. code that ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
solution A
0 1 $myarray=array(); 2 .. code that fill $myarray; ------------------------------------ solution B 0 1 unset($myarray); 2 .. code that fill $myarray; ------------------------------------ if myarray going from point 0, when it is at point 1 is make new totally? I want that in the point 2 the array is how the first time used (not affect by previous use; all how new ) |
![]() |
| Thread Tools | |
| Display Modes | |
|
|