最佳答案
据我所知(这是非常少的) ,有两种方式,给出:
$var = new object()
然后:
// Method 1: Set to null
$var = null;
// Method 2: Unset
unset($var);
还有更好的办法吗,我是在吹毛求疵吗?