LoginSignup
1
1

More than 5 years have passed since last update.

【PHP】エラー出力

Last updated at Posted at 2018-10-31

PHPでエラーを出力する方法

PHPのエラー出力方法になります。基本、設定ファイル作って管理してるけど、
たまーに直書きすることあるので、コピペしやすいように。

php.iniでエラー出力

display_errors = 1
error_reporting = E_ALL

PHPファイル内でエラーを出力する方法

ini_set( 'display_errors', 1 );
error_reporting(E_ALL);

httpd.conf .htaccessでエラーを出力する方法

display_errors = 1
error_reporting = E_ALL
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1