5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【PHP】事前準備 PHP の開発環境の構築について

Posted at

まず初めにこの記事は、PHPを使用する人向けの記事となります。
そのために、まず事前準備としてPHPの開発環境を構築していこうと思います。

使用する環境

  • OS:Winodws11
  • XAMPP
  • Visual Studio Code
  • コマンドプロンプト
  • composer
  • Laravel
  • Node.js

手順

  1. 「XAMPP」をインストールし、ダウンロードをクリック
  2. 「C:\」に解凍
    XAMPP インストール先はこちら
  3. 「XAMPP.exe」を起動し、「Apache」を起動
  4. PHP のコードを書くために、「Visual Studio Code」をインストール
    Visual Studio Code ダウンロード先はこちら
  5. 「composer」をインストール
    ※事前にPHPがインストールされていること
    composer ダウンロード先はこちら
  6. 「Windows」のコマンドプロンプトにて下記をたたく
コマンドプロンプト
composer --version
結果
Composer version 2.8.2 2024-10-29 16:12:11
PHP version 8.2.12 (C:\xampp\php\php.exe)
Run the "diagnose" command to get more detailed diagnostics output.

7.「Laravel」のインストール

コマンドプロンプト
composer create-project laravel/laravel 【作成するプロジェクト名】 --prefer-dist 

※エラーが出た場合

コマンドプロンプト:エラー結果
git was not found in your PATH, skipping source download

※gitをダウンロードしてもエラーが出る場合

  • 「C:\xampp\php」にある「php.ini」をサクラエディタなどで開き「zip」という単語で検索し、「;」を削除
php.ini
962行目;extension=zip
  • 再度「Laravel」のインストールのコマンドをたたく
    →これで「Laravel」のインストールが完了

8.http://127.0.0.1/作成するプロジェクト名/index.php
をたたく
9.下記コマンドをコマンドプロントでたたく

コマンドプロント
php artisan serve

9.「Laravel」のデフォルトの画面が出てきたらOK
10. Node.jsのインストール
Node.jsダウンロード先はこちら

これで事前準備 PHP 環境構築完了です!

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?