php如何遮蔽錯誤
1、只要在錯誤語句之前加上@符號,便可遮蔽了錯誤資訊;
範例:
@unlink('./image.png');
2、開啟php.ini檔案,搜「display_errors = on」預設的是on,改為off即可;
3、使用函數「display_errors」關閉錯誤顯示;