Answers for "which of the following function is used to unset a variable in php?"

PHP
1

unset php

//remove variable
unset($var1,$var2,$var3;
//remove array
unset($array['$key']);
Posted by: Guest on October-08-2021

Code answers related to "which of the following function is used to unset a variable in php?"

Browse Popular Code Answers by Language