Warning: Undefined array key 0 in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 406

Warning: Attempt to read property "parent" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 407

Warning: Attempt to read property "term_id" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 413

Warning: Attempt to read property "cat_name" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 413

XAMPPでローカルにPHP開発環境を設定する


Warning: Undefined array key 1 in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 62

Warning: Undefined array key 1 in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/functions.php on line 62
PHP

PHPはサーバーサイドスクリプト言語なので、実行するにはPHPを使用可能なサーバに格納する必要があります。 PHPを使用可能なレンタルサーバなどを借りれば、大抵は所定の場所に格納するだけで動きます。

しかしいきなりサーバを借りてアップしたりするのは気が引けると思うので、まずはローカルにPHP開発環境を設定てみましょう。

XAMPPをインストールする

PHPファイルをダウンロードする手もありますが、XAMPPをインストールする方が手っ取り早いです。 以下の記事を参考にXAMPPを導入してください。

導入が完了したらAPACHEを起動しておいてください。

php-install01

PHPファイルを格納する

「Hello.PHP」ファイルを作成し、とりあえず以下のコードを記述してください。 作成したファイルはxampp¥htdocsフォルダに格納してください。


  
    <title>Hello World!</title>
  
  
    <?PHP echo '<p>Hello World!</p>' ?>
  

PHPの処理結果を表示する

ブラウザのアドレスバーに「http://localhost/Hello.PHP」と入力してPHPファイルへアクセスしてください。 「Hello world!」と表示されていればOKです。PHP開発環境が整いました。

php-install02

Warning: Undefined variable $category in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 79

Warning: Attempt to read property "name" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 79

の記事

eyecatch

HTML文書の記述ルールと作法

eyecatch

エスケープシーケンス

eyecatch

既存サービスと独自サイトのメリット・デメリット

eyecatch

ブロックレベル要素とインライン要素

eyecatch

ファイルの作成方法

eyecatch

JavaScriptの関数記述と呼び出し


Warning: Undefined variable $category in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 84

Warning: Attempt to read property "count" on null in /home/yatsuba/yatsuba.com/public_html/wp-content/themes/amaru/content.php on line 84
HOME