PHP でメモリ リークを心配する必要はありますか? 特に、ブラウザから呼び出されている次のコードがあります。呼び出しが終了すると、すべてが適切にクリーンアップされますか? または、作成された最初の配列によって作成されたメモリをクリアする必要がありますか?
class SomeClass
{
var $someArray = array();
function someMethod()
{
$this->someArray[1] = "Some Value 1";
$this->someArray[2] = "Some Value 2";
$this->someArray[3] = "Some Value 3";
$this->someArray = array();
$this->someArray[1] = "Some other Value";
$this->someArray[2] = "Some other Value";
$this->someArray[3] = "Some other Value";
}
}
someMethod();
ありがとう、スコット