嗨,我可以使用 wkhtmltopdf 库从 html 页面生成 pdf 文件。我通过不使用 php 和方法的系统命令生成 pdf 文件。
$command = "wkhtmltopdf\wkhtmltopdf --page-size Letter ".$myFile." ".$outfile;
system($command);
现在我想将这个生成的 pdf 文件作为电子邮件的附件发送。为此,我必须使用系统命令将 pdf 报告保存到我的本地目录。How can i do that?