使用PHP将Base64Binary转换为PDF

时间:2016-11-10 05:42:08

标签: php

我尝试了许多可在互联网上使用的脚本,将我的Base64Binary解码为PDF,但这些脚本无效。请帮帮我。

Here is the sample encoded PDF

1 个答案:

答案 0 :(得分:1)

$data = base64_encode($contents);
file_put_contents('output.pdf', base64_decode($data));