无法打开流:打开的文件太多

时间:2013-04-10 22:20:07

标签: linux logging php

我正在为在共享主机中运行的客户端编写PHP CLI脚本。它使用如下的简单函数登录到文件:

function log_entry($msg) {
    global $log_file, $log_handle;
    $msg =  "[".date('Y-m-d H:i:s')."] ".$msg."\n";
    echo $msg;
    $log_handle = fopen($log_file, 'a');
    fwrite($log_handle, $msg);
}

我收到了这个错误:

PHP Warning:  fopen(./logs/sync.20130410.log) 
[<a href='function.fopen'>function.fopen</a>]: failed to open stream: 
Too many open files in ./functions.php on line 61

我认为使用相同的句柄存在问题,因此我将其更改为:

function log_entry($msg) {
    global $log_file;
    $msg =  "[".date('Y-m-d H:i:s')."] ".$msg."\n";
    echo $msg;
    $log_handle = fopen($log_file, 'a');
    fwrite($log_handle, $msg);
    fclose($log_handle);
}

但那没用。我总是在同一个日志行中得到错误。当我ulimit -n时,我得到1024,但这应该不是问题,因为我从不打开多个文件。想法?

1 个答案:

答案 0 :(得分:7)

发现了这个问题。我正在回答这个问题,万一有人因为同样的原因而谷歌,但我知道这个答案并没有隐含在这个问题中。

我正在使用BigCommerce API客户端,结果发现他们正在为每个请求打开句柄并使我的脚本崩溃。以下是我修复它的方法:

的Bigcommerce / API / Connection.php:354-365:

public function put($url, $body)
{
    $this->addHeader('Content-Type', $this->getContentType());

    if (!is_string($body)) {
        $body = json_encode($body);
    }

    $this->initializeRequest();
    $handle = tmpfile();
    fwrite($handle, $body);
    fseek($handle, 0);
    curl_setopt($this->curl, CURLOPT_INFILE, $handle);
    curl_setopt($this->curl, CURLOPT_INFILESIZE, strlen($body));

    curl_setopt($this->curl, CURLOPT_URL, $url);
    curl_setopt($this->curl, CURLOPT_PUT, true);
    curl_exec($this->curl);
    fclose($handle); // Added this line

    return $this->handleResponse();
}

(添加fclose($handle);)行。