我已经通过mpdf库生成了pdf,我的pdf需要4-5分钟才能生成pdf。我想添加百分比进度条,以显示在生成pdf时的进度。
如何为百分比进度条添加javascript或php代码以显示进度
发布于 2017-03-29 17:48:44
define('_MPDF_URI','../'); // must be a relative or absolute URI - not a file system path
$mpdf = new mPDF();
$mpdf->StartProgressBarOutput(2);
$mpdf->WriteHTML('You will hardly have time to see the progress bars!');
$mpdf->Output();来自源Link
发布于 2017-03-29 17:48:52
https://stackoverflow.com/questions/43089940
复制相似问题