我在flie index.class.php
创建了以下课程: -
<?php
class index{
public function loadTitle() {
$title = "Welcome to My Website";
return $title;
}
}
?>
现在,我在index.php
文件中使用它,如下所示
<?php
require_once("index.class.php");
$obj = new index();
echo $obj->loadTitle();
?>
,现在我的问题是Page会变得很沉重,文章和图片很多,我每天都会想到1500-2500用户。
是的,我还需要取消内存,我知道PHP有自己的垃圾收集器,但是关注URL让我害怕: - www.google.com/search?q=php+memory+leak+with+new
我在stackoverflow中看到它确实消耗内存的一些问题,并且某些人建议使用unset
函数,但我不确定,该怎么做..
这是我的尝试......: -
我是否只需要致电
<?php
unset($obj); // At the end of the page, or where i will no more be using this object.
?>
或者我也必须设置NULL值。
<?php
$obj = NULL;
unset($obj);
?>
高于代码罚款以释放内存,或者我是否还需要做其他事情..请建议并教我。这将非常有帮助。
由于