我想将我的php页面中的表格转换为pdf ..我将它传递给表单元素并在其他页面上检索。 我尝试使用许多pdf转换器,如fpdf,dompdf等,但遗憾的是没有工作。 总是有一些错误。我也通过mpdf遇到它工作正常,但不得不要求客户手动保存pdf。
我尝试使用phpwrapper文件(prince.php)使用princexml。但我得到了 不推荐使用的错误。![] [1]
我使用的代码如下
<body>
<?php
include "prince.php";
$prince = new Prince('../../../Program Files (x86)/Prince/Engine/bin/prince.exe');
$prince->convert_file_to_file("license.txt","license.pdf",'inf');
$msg=array("hey","hello");
echo $prince->convert_string_to_file("Rahul","rahul.pdf",$msg[]);
?>
</body>`
我想要echo $ prince-&gt; convert_string_to_file(“Rahul”,“rahul.pdf”,$ msg []);上班。 请帮忙......坚持了很长时间!!!