Answers for "php reset variable value"

PHP
0

php reset variable value

unset (var1, var2.... )
Posted by: Guest on March-30-2020
-1

php reset variable value

<?php
$xyz='w3resource.com';
echo 'Before using unset() the value of $xys is : '. $xyz.'<br>';
unset($xyz);
echo 'After using unset() the value of $xys is : '. $xyz;
?>
Posted by: Guest on March-30-2020

Code answers related to "php reset variable value"

Browse Popular Code Answers by Language