wkhtmltopdf 代码点火器
wkhtmltopdf 听起来像是一个很好的解决方案...问题是 exec
shell_exec("c:\wkhtmltopdf.exe","http://www.google.com google.pdf");
我做错了什么吗?
wkhtmltopdf sounds like an excellent solution...the problem is nothing happens on the exec
shell_exec("c:\wkhtmltopdf.exe","http://www.google.com google.pdf");
Am i doing anything wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以使用“官方”课程吗?
http://code.google.com/p/wkhtmltopdf/wiki/IntegrationWithPhp
如果没有,也许了解一下他们是如何做事的将有助于您的实施。
编辑:
来自 Github 的新链接 - https://github.com/mikehaertl/ phpwkhtmltopdf
Can you use the "official" class?
http://code.google.com/p/wkhtmltopdf/wiki/IntegrationWithPhp
If not, perhaps peeking into how they did things will help you out with your implementation.
Edit:
New link, from the Githubs - https://github.com/mikehaertl/phpwkhtmltopdf
shell_exec() 仅采用一个参数,但您给了它两个参数。试试这个:
我想这样就可以了。您还可以考虑使用
exec()
函数。shell_exec() only takes one parameter, but you have given it two. Try this instead:
I think that will do it. You might also consider using the
exec()
function.添加 wkhtmltopdf.exe CLASS_PATH 变量的路径
并在您的 php 脚本中使用以下代码
passthru("wkhtmltopdf www.gmail.com output.pdf",$err);
// 我们将输出 PDF
header('内容类型:应用程序/pdf');
// 它将被称为downloaded.pdf
header('内容处置:附件;文件名=“output.pdf”');
// PDF源在original.pdf中
readfile('输出.pdf');
我希望这会起作用...
add path to wkhtmltopdf.exe CLASS_PATH variable
and in your php script use bellow code
passthru("wkhtmltopdf www.gmail.com output.pdf",$err);
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="output.pdf"');
// The PDF source is in original.pdf
readfile('output.pdf');
i hope this will work...