4
3

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 1 year has passed since last update.

PHP ダウンロード&インストール方法

Last updated at Posted at 2023-01-28

PHPの公式ページからダウンロードします。

それぞれ、次のような基準で必要な物を選択すれば良いでしょう。

種類	選択すべきシーン
VS16 x86 Non Thread Safe	32bit版のWindowsを利用しており、WEBサーバーとして IIS を利用する場合。
VS16 x86 Thread Safe    32bit版のWindowsを利用しており、WEBサーバーとして Apache を利用する場合。
VS16 x64 Non Thread Safe	64bit版のWindowsを利用しており、WEBサーバーとして IIS を利用する場合。
VS16 x64 Thread Safe	64bit版のWindowsを利用しており、WEBサーバーとして Apache を利用する場合。

image.png
ダウンロードして解凍します。
image.png

Cドライブ直下に配置したフォルダ名をPHPに変更。
image.png

Windowsの環境変数の設定

image.png
環境変数の「Path」に配置した PHP のフォルダを追加します。 「Path」を選択して「編集」をクリックして編集ダイアログを表示します。

image.png

動作確認

コマンドプロンプトに php -v と入力して実行します。
image.png
無事に PHP のバージョンは表示されたでしょうか? これにて PHP のインストールは終了です。

php.ini 最小限の修正


// 変更前
; extension_dir = "ext"
date.timezone =
;extension=mbstring
;mbstring.language = Japanese

// 変更後
extension_dir = "C:\php\ext" //(ドライブ文字):\php\ext
date.timezone = "Asia/Tokyo"
extension=mbstring
mbstring.language = Japanese

OpenSSLの有効化

・「VS16 x64 Non Thread Safe/VS16 x86 Non Thread Safe」WEBサーバーとして IIS をインストールして利用となります。

image.png

php.ini-development:開発サーバ用のphp.iniのサンプルファイル
php.ini-production:公開サーバ用のphp.iniのサンプルファイル

必要に応じて、php.ini ファイルを作成して使用してください。

extension_dirを確認。
image.png

追加。
image.png

php-m で確認。
image.png

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?