فایل جدید
راهنما
کپی
<?php $a = "Hello world!"; echo "The value of variable 'a' before unset: " . $a . "<br>"; unset($a); echo "The value of variable 'a' after unset: " . $a; ?>
اجرای کد