Loading...
This site is best viewed in a modern browser with JavaScript enabled.
Something went wrong while trying to load the full version of this site. Try hard-refreshing this page to fix the error.
What's the fastest way to empty an array?
jtown
???
mmilano
unset($array);
jmcneese
or
$somearray = array();
jtown
thanks guys.