我在飞行中创建了以下课程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();
?>
,现在我的问题是页面会变得很重,有很多文章和图片,我预计每天有 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);
?>
上面的代码可以很好地释放内存,还是我还需要做其他事情。请建议并教我。这将非常有帮助。
谢谢