Is there any PHP function that can allow me to make a copy of an array ?
myarray=array(0=>"Hello",1=>"World");
copy it and named it as fresharray().
Printable View
Is there any PHP function that can allow me to make a copy of an array ?
myarray=array(0=>"Hello",1=>"World");
copy it and named it as fresharray().
PHP Code:$fresharray = $myarray;