目次

PHP

ネットワーク

HTTP

$_SERVER{'ヘッダ名'}

$_POST['項目名']

$_GET['項目名']

ログ

display_errors = On
error_reporting(E_ALL);
error_log = /var/log/php_errors.log

error_log( $message . “\r\n”, 3, '/var/log/php.log' );

  (改行は自動で付かないので注意)