1
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?

More than 3 years have passed since last update.

PHPでローカルホストをサクッと立てる方法

Last updated at Posted at 2020-06-12

PHPで作ったコードをサクッと確認できないか??

MAMPやXAMMPでローカルApatch環境はあるものの
ローカルホスト設定する手間も面倒だなと、、、

そこで、PHPからさくっと確認したい場合の方法はあるかしら?と探してみました

Macの場合
$ php -S localhost:80 -t /var/www/html/

ポート番号は、使用されてない数字
/var/www/html/は、立ち上げたいRootフォルダを記載

終了したい時は、Ctr+C

#PHPビルトインサーバーという機能

PHPビルトインサーバーという機能のことらしい。知らなかった・・
詳しくは、こちら。
php.net ビルトインサーバー

PHPバージョンはPHP5.4.0以上ですね

1
0
1

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
1
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?