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 のエラー メッセージを無効にする方法はありますか? 独自のエラー メッセージがあり、FPDF のエラー メッセージも表示したくありません。
FPDF ライブラリの Error() 関数を次のように編集します。
function Error($msg) { // Fatal error die; }
このコードを使用して、エラー報告を無効にします
error_reporting(0);