2017-03-09 2 views

답변

1

당신은이 라인을 시도, 오류를 숨기기 위해 htaccess로 사용할 수 있습니다 :

# supress php errors 
php_flag display_startup_errors off 
php_flag display_errors off 
php_flag html_errors off 

Source

1

이 나를 위해 작동합니다

<?php 
ini_set('display_errors', 0); 
ini_set('display_startup_errors', 0); 
error_reporting(0); 
?> 

의 Łukasz을

관련 문제