fpdf使用curl创建pdf - fopen无效

时间:2014-03-03 23:11:19

标签: php curl fopen fpdf

在fpdf.org上,创建pdf文件的功能是:

// Save to local file
        $f = fopen($name,'wb');
        if(!$f)
            $this->Error('Unable to create output file: '.$name);
        fwrite($f,$this->buffer,strlen($this->buffer));
        fclose($f);

allow_url_fopen已关闭,因此我读到替代方案正在使用cURL。但我不知道怎么做。有人可以帮忙吗?干杯

0 个答案:

没有答案