Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
fpdf library我正在使用.On 我的 localhost 将pdf 页面从我的 php 页面导出到我的本地主机中的“pdf”,但是当我托管到生产服务器并实时工作时......它没有实时导出实际上我也看不到任何错误,,,,,但我的页面变为空白
fpdf library
您也可以尝试使用
ini_set('display_errors', 1);
在脚本的开头
尝试添加以下内容以查看错误:
ini_set('display_startup_errors',1); ini_set('display_errors',1); error_reporting(-1);
在查看错误后,我通过在代码之上添加以下代码使我的代码正常工作:
include_once('fpdf182/fpdf.php'); ob_start();