3

当我使用 file_get_contents 并将其作为参数传递给另一个函数而不将其分配给变量时,该内存是否会在脚本执行完成之前被释放?

例如:

preg_match($pattern, file_get_contents('http://domain.tld/path/to/file.ext'), $matches);

file_get_contents 使用的内存会在脚本完成之前释放吗?

4

4 回答 4

10

为保存文件内容而创建的临时字符串将被销毁。无需深入研究来源进行确认,您可以通过以下几种方法测试作为函数参数创建的临时值是否被破坏:

方法 1:报告其销毁的类

这通过使用报告其自身消亡的类来演示生命周期:

class lifetime
{
    public function __construct()
    {
         echo "construct\n";
    }
    public function __destruct()
    {
         echo "destruct\n";
    }


}

function getTestObject()
{
   return new lifetime();
}


function foo($obj)
{
   echo "inside foo\n";
}




echo "Calling foo\n";
foo(getTestObject());
echo "foo complete\n";

这输出

Calling foo
construct
inside foo
destruct
foo complete

这表明隐含的临时变量在 foo 函数调用之后立即被销毁。

方法2:测量内存使用情况

这是另一种方法,它使用memory_get_usage进一步确认来衡量我们消耗了多少。

function foo($str)
{
   $length=strlen($str);

   echo "in foo: data is $length, memory usage=".memory_get_usage()."\n";
}

echo "start: ".memory_get_usage()."\n";
foo(file_get_contents('/tmp/three_megabyte_file'));
echo "end: ".memory_get_usage()."\n";

这输出

start: 50672
in foo: data is 2999384, memory usage=3050884
end: 51544
于 2009-02-02T14:25:27.197 回答
0

在您的示例中,$matches超出范围时将释放内存。
如果您不存储匹配结果,则内存将立即释放

于 2009-02-02T14:19:07.383 回答
0

在以下代码中,内存使用量 = 6493720

开始:1050504

结束:6492344

echo "start: ".memory_get_usage()."\n";
$data = file_get_contents("/six_megabyte_file");
echo "end: ".memory_get_usage()."\n";

但以下代码中的内存使用量 = 1049680

开始 = 1050504

结束 = 1050976

echo "start: ".memory_get_usage()."\n";
file_get_contents("/six_megabyte_file");
echo "end: ".memory_get_usage()."\n";

注意:在第一个代码文件中存储在一个变量中。

于 2014-03-18T20:29:38.883 回答
0

如果您认为这将有助于避免内存不足错误,那您就错了。您的代码(bytes_format):

<?php
$url = 'http://speedtest.netcologne.de/test_10mb.bin';
echo 'Before: ' . bytes_format(memory_get_usage()) . PHP_EOL;
preg_match('~~', file_get_contents($url), $matches);
echo 'After: ' . bytes_format(memory_get_usage()) . PHP_EOL;
echo 'Peak: ' . bytes_format(memory_get_peak_usage(true)) . PHP_EOL;
?>

使用 10.5 MB:

Before: 215.41 KB
After: 218.41 KB
Peak: 10.5 MB

这个代码:

<?php
$url = 'http://speedtest.netcologne.de/test_10mb.bin';
echo 'Before: ' . bytes_format(memory_get_usage()) . PHP_EOL;
$contents = file_get_contents($url);
preg_match('~~', $contents, $matches);
unset($contents);
echo 'After: ' . bytes_format(memory_get_usage()) . PHP_EOL;
echo 'Peak: ' . bytes_format(memory_get_peak_usage(true)) . PHP_EOL;
?>

也使用 10.5 MB:

Before: 215.13 KB
After: 217.64 KB
Peak: 10.5 MB

如果您想保护您的脚本,您需要使用$length参数或分块读取文件

于 2015-04-14T12:22:05.697 回答