我正在尝试从PHP页面(Apache,LAMP)的HTML文件创建PDF。当我从命令行执行脚本时,它可以正常工作并创建PDF。但是,当我在浏览器中浏览页面时,它什么也没做。我认为这是一个权限问题,但我很难过!这是代码。 (注意ls命令在浏览器中产生输出,因此不仅仅是PHP不允许执行shell命令的问题)
<?php
$htmlName = ("output2/alex" . time() . ".html");
$pdfName = ("output2/alex" . time() . ".pdf");
$html = "<html><body><h1>Hello, World!</h1></body></html>";
$fileHandle = fopen($htmlName, "w+");
fwrite($fileHandle, $html);
fclose($fileHandle);
$command= "htmldoc -t pdf --browserwidth 1000 --embedfonts --header ... --footer t./ --headfootsize 5.0 --fontsize 9 --bodyfont Arial --size letter --top 4 --bottom 25 --left 28 --right 30 --jpeg --webpage $options '$htmlName' -f '$pdfName'";
echo "OUTPUT: \r\n";
$X=passthru($command);
echo "TESTING LS:";
$y=passthru("ls -al");
if(file_exists($htmlName) && file_exists($pdfName)) {
echo "Success.";
} else {
echo "Sorry, it did not create a PDF";
}
?>
当我从命令行执行脚本时,它会产生预期的输出,并创建一个类似于它的PDF文件:
> php alextest.php
Zend OPcache requires Zend Engine API version 220131226.
The Zend Engine API version 220100525 which is installed, is outdated.
OUTPUT:
PAGES: 1
BYTES: 75403
TESTING LS:total 2036
drwxr-xr-x 9 ----- and so on...
当我在Chrome中浏览页面时,它仅输出LS命令。
帮助!?
答案 0 :(得分:0)
您可能会尝试使用完整路径作为您的php文件,我将在不同的目录中执行,具体取决于它的加载方式。 (IE通过include
,require
或.htaccess
或直接通过apache。)
IE
$htmlName = ("/home/alex/html/output2/alex" . time() . ".html");
$pdfName = ("/home/alex/html/output2/output2/alex" . time() . ".pdf");
我同意使用http://dompdf.github.io/或https://tcpdf.org/这样的软件包最好的评论。
答案 1 :(得分:0)
我见过同样的问题,对于我一生来说,我根本无法找到为什么它不能通过基于Web的调用实现的答案,但是从命令行上却从来没有问题。因此,我没有创建这方面的解决方案,而是创建了Perl代理,使我可以从命令行解析PDF,使其实际上可用于任何特定目的。因为,使用Perl,我从来没有遇到解析PDF的问题,而且我已经做了几十年了。
所以,这就是你要做的。 PHP代码:
exec("/usr/local/bin/perl5 -s /path/to/perl/executable/parse-pdf-from-html-document.pl -source=markup-file.html",$output);
foreach ($output as $aline) {
#- WAS SUCCESSFUL
if (strstr($aline,'Successful!') == TRUE) {
#- no feedback, win silently
}
#- NOT SUCCESSFUL
else {
echo $aline . "\n";
}
}
$output
用于保存正在运行的exec的结果。
现在让我们来看一下parse-pdf-from-html-document.pl的Perl代码:
#!/usr/local/bin/perl5 -s
#- $document coming from commandline variable, via caller: PHP script
$myDocumentLocale = "/path/to/markup/document/".$document;
if (-e $myDocumentLocale) {
$documentHTML = $myDocumentLocale;
$documentPDF = $documentHTML;
$documentPDF =~ s/\.html/\.pdf/gi;
$myDocumentHTML = `cat $myDocumentLocale`;
$badPDF = 0;
$myPDFDocumentLocale = $myDocumentLocale;
$myPDFDocumentLocale =~ s/\.html/\.pdf/gi;
$badPDF = &parsePDF($myDocumentLocale, $myPDFDocumentLocale);
if ($badPDF == 0) {
print "Successful!";
}
else {
print "Error: No PDF Created.";
}
exit;
}
else {
print "Error: No document found.";
exit;
}
sub parsePDF {
my ($Ihtml, $Ipdf) = @_;
$wasBad = 0;
#- create PDF
$ENV{HTMLDOC_NOCGI} = 1;
$commandline="/usr/local/bin/htmldoc -t pdf13 --pagemode document --header ... --footer ... --left 1cm --size Letter --webpage -f $Ipdf $Ihtml";
select(STDOUT);
$| = 1;
#print "Content-Type: application/pdf\n\n";
system($commandline);
if (-e $Ipdf) {
$wasBad = 0;
}
else {
$wasBad = 1;
}
return $wasBad;
}
exit;