Hey,
If I have elements in a array and I want to clear it so that it only returns Array () (empty array), whats the easiest way to do this?
Thx.
$array = array();
lol, that was easy 😃 Ive been programming to much C _
Ive been programming to much C
Oh.
function free(&$array) { $array = array(); } free($array);