unset()。 取消设置 IS_NULL为空 empty — 检查一个变量是否为空 eval — 把字符串作为PHP代码执行
<?php
$string = 'cup';
$name = 'coffee';
$str = 'This is a $string with my $name in it.';
echo $str. "\n";
eval("\$str = \"$str\";");
echo $str. "\n";
?>
This is a $string with my $name in it. This is a cup with my coffee in it.