<?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
1 2 | sudo yum install php |
後はタイムゾーンを東京に設定しておかないと、下記エラーが発生する。
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で設定する。
1 2 3 4 5 | [Date] ; ... ; ... date.timezone = Asia/Tokyo |
後、DOMを操作したい時は次のようにそれ用のアドオンを追加しなくてはいけない。
1 2 | sudo yum install php-xml |