반응형
php에서 에러가 나오게 설정할 수 있는 2가지 방법이 있다.
1. 작성중인 php 파일 수정
<?php
error_reporting(E_ALL);
ini_set("display_errors",1);
?>
2. php_ini 파일 수정
display_errors=On
반응형
'programming > php' 카테고리의 다른 글
mb_convert_encoding (0) | 2023.01.02 |
---|---|
magic_quotes_gpc (0) | 2023.01.02 |
addslashes (0) | 2023.01.02 |
substr (0) | 2023.01.02 |
$_FILES (0) | 2023.01.02 |