mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
10 lines
176 B
PHP
10 lines
176 B
PHP
<?php
|
||
$a = 100;
|
||
function test()
|
||
{
|
||
global $a;
|
||
unset($a);
|
||
}
|
||
test();
|
||
echo $a; // выводит 100, т. е. настоящая $a не была удалена в test()!
|