如何从Web读取PDF文件并将其存储在PHP中?

时间:2016-01-09 07:46:01

标签: php pdf file-io file-get-contents file-put-contents

我在某些服务器上有PDF文件

$path = 'http://someserver/somepath/someFile.pdf'

我想将这些文件保存在我的服务器

$file_name = 'someFile.pdf';
$file_handler = fopen('/' . DS . $file_name, 'w');
$PDF_CONTENTS = file_get_contents($path);
file_put_contents($file_handler, $PDF_CONTENTS);
fclose($file_handler);

正在创建someFile.pdf,但没有内容。

1 个答案:

答案 0 :(得分:1)

无需使用fopen。 尝试

 $storeLocation = '/pdf/mypdf.pdf';
 $PDF_CONTENTS = file_get_contents($path);
 file_put_contents($storeLocation, $PDF_CONTENTS);