1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHPのエラーを表示する

Posted at

サーバによっては設定でエラーが表示されないようになっていることがある。
エラーを表示させるには以下のコードを追加する。

コード
ini_set('display_errors', "On");
使用例
<?php

// エラーを出力する
ini_set('display_errors', "On");

$a=1000;
$b=0;
 
$c=$a/$b; //0で割っているのでエラーが出る
1
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?