0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

windowsのローカルのphpを8.0.13から8.3.13にバージョンアップする方法

Posted at

はじめに

方法

phpの公式サイトから、「VS16 x64 Thread Safe Zip」をダウンロードする。

image.png

「C:\php」フォルダを作成し、ダウンロードして展開したフォルダを移動させます。(パス:「C:\php\php-8.3.13-Win32-vs16-x64」)

「php-8.3.13-Win32-vs16-x64」のフォルダ内にある「php.ini-development」をコピーして、「php.ini」にリネイムします。

「システム環境変数の編集」を開き、「環境変数」をクリックします。
「ユーザー環境変数」または「システム環境変数」の「Path」を選択し、「編集」をクリックします。
「C:\php\php-8.3.13-Win32-vs16-x64」のPathを新規追加します。

またシステム環境変数の新規で、以下を追加してください。

image.png

バージョンアップされたか確認

「php --ini」コマンドを入力して、「C:\php\php-8.3.13-Win32-vs16-x64\php.ini」になっていることを確認。

「php -v」コマンドを入力して、「PHP 8.3.13」になっていることを確認出来たら終了です。

MySQLでマイグレーションをできるようにする設定

php.iniファイル内の「extension_dir = "ext"」と「extension=pdo_mysql」のコメントアウトを消して保存してください。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?