0
A
回答
0
0
您可以嘗試將這些行添加到您的.htaccess
文件並將其上傳到根目錄。
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
-1
您可以使用此
<?php
// Turn off all error reporting
error_reporting(0);
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
// Report all PHP errors
error_reporting(-1);
// Same as error_reporting(E_ALL);
ini_set('error_reporting', E_ALL);
?>
+0
@ tim3111檢查出答案 – Codelord
相關問題
- 1. .htaccess使用GET變量將所有錯誤重定向到PHP文件
- 2. 禁用所有父htaccess的
- 3. 基於文件所有權禁用PHP
- 4. 僅使用.htaccess禁用所有子子目錄的php
- 5. PHP禁用特定文件的錯誤?
- 6. 使用.htaccess將所有.html頁面作爲.php文件運行?
- 7. 可以使用.htaccess文件我躲在PHP的錯誤路徑
- 8. 使用.htaccess重定向到404錯誤的php/html文件
- 9. 的.htaccess重寫所有PHP文件
- 10. 使用.htaccess禁用子目錄php/access
- 11. 錯誤使用.htaccess
- 12. PHP使用.htaccess時的Redeclare錯誤auto_prepend_file
- 13. 使用.htaccess獲取錯誤描述/ PHP
- 14. 與.htaccess和php文件404錯誤
- 15. 禁用從.htaccess中的文件夾中提供PHP文件
- 16. 服務器錯誤!錯誤500當使用.htaccess文件
- 17. htaccess和PHP文件 - 處理所有文件爲PHP?
- 18. 使用.htaccess使文件夾(和子文件夾)中的所有文件在一年內過期使用.htaccess
- 19. 在PHP中禁用錯誤
- 20. 禁用PHP中的郵件功能.htaccess
- 21. 的.htaccess - 沒有PHP錯誤或沒有寫文件權限
- 22. 使用htaccess重定向到所有子域的特定文件使用htaccess
- 23. 如何使用htaccess爲所有* .html查詢返回410錯誤?
- 24. PHP/CodeIgniter文件url - 禁止錯誤
- 25. 禁用所有共享文件夾
- 26. 我的htaccess文件有什麼錯誤?
- 27. 文件上傳錯誤使用php
- 28. 錯誤上傳文件中使用PHP
- 29. 使用PHP錯誤上傳mp4文件
- 30. 錯誤文件上傳使用php
你可以糾正他們,這樣他們就不會再出現... –
這是不太一樣的鏈接題。 –