Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

clear array php

//To clear array you are able to simply re-instantiate it
$foo = array();

//To clear $foo from the symbol table use
unset($foo);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #clear #array #php
ADD COMMENT
Topic
Name
5+7 =