0
0

More than 1 year has passed since last update.

PHPを基本からまとめてみた【環境構築】

Last updated at Posted at 2023-01-20

PHPとは

サーバーサイドのプログラミング言語

Wordpress

ブログを作成するシステム

MAMPとは

PC上にローカル環境サーバ環境一式をインストールできるツール

環境構築

ローカル環境構築 ⇨ PCの中にサーバー

公式サイト:MAMP

Pathの設定

//terminal

cd /Applications/MAMP/htdocs/
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
composer -V

//プロジェクト作成
composer create-project laravel/laravel <プロジェクト名>
brew tap shivammathur/php
brew install shivammathur/php/php@7.4
brew link php@7.4

参考サイト

0から始めるPHP 001:環境構築(Mac編)

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