我有一段代码,用于轮询CRM系统,并通过URL找到一个特定文档......从找到的文档中,然后将其添加到PHP变量中 - 但是如果我然后打印PHP变量它只是垃圾。如何将PHP变量和内容转换为PDF(它已经存储在变量中的PDF)....所以它可以下载或打开到屏幕?
以下是使用的代码:
**$url = "accounting/invoices/55120.pdf?template=30&api_key='My-API-Key'";
$pdf = $thisbooks->get($url, array(), array('decode_json' => false));
// Ensure the response looks like a PDF
if (!preg_match('/^\%PDF\-1\.4\s/', $pdf)) {
$thisbooks->log('ERROR: Unexpected response: is it a PDF?', $pdf, 'error');
}
$thisbooks->log('Fetched PDF', $pdf);
print $pdf;**
现在当我打印$ pdf变量时,我可以看到脚本代码,但它没有做任何其他事情......
提前致谢
达米安
答案 0 :(得分:0)
您是否尝试使用file_get_contents
来阅读变量?
或使用此标题:header('Content-type: application/pdf');
如果您发送代码,我们可以提供更多帮助。