Files
php_8/functions/unset_global.php
2022-05-10 22:29:05 +03:00

10 lines
125 B
PHP

<?php
function deleter()
{
unset($GLOBALS['a']);
}
$a = 100;
deleter();
echo $a; // PHP Warning: Undefined variable $a