phpが動作していない時

<?php
phpinfo();
?> が動作しないときは、phpが動作していない証拠。

http://www.standpower.com/php_environment2.html AddType application/x-httpd-php .php

このサイトに習い、この行の文言を追加して解決。 この記述がないとphpプログラムを読めないみたい。

※その前に、最初にもちろん下記コマンドでphpをインストールしておくように! phpインストール→AddType php→ apache再起動(sudo service httpd restart)でOK

後はタイムゾーンを東京に設定しておかないと、下記エラーが発生する。

Warning: date(): It is not safe to rely on the system's timezone settings. You are required to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /***\*/***\*/***

そんな時はphp.iniで設定する。

後、DOMを操作したい時は次のようにそれ用のアドオンを追加しなくてはいけない。