在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。但我不知道怎么做。有人可以帮忙吗?干杯