读取带有.DMS扩展名的文件夹中的文件并在php中转换为pdf格式
$path = "folder/1004.dms";
$content = file_get_contents($path);
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="test filename.pdf"');
echo $content;
此代码将生成 PDF,但无法打开 pdf 文件,任何帮助将不胜感激,谢谢。