Contents

[PHP] 에러 보여주기

Contents
<?php
    error_reporting(E_ALL); //모든 PHP 에러를 리포팅함
    ini_set("display_errors", 1); //php.ini 파일의 'display_errors'를 활성화 시킴
?>