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

More than 1 year has passed since last update.

PHPで簡易的なサーバーを立ち上げる

Posted at

概要

PHPで素早くlocalhostでページを確認したい!
MAMP使う時間もない!
という時に簡易的なサーバーを立ち上げる時の流れです。

手順

どこでも良いので、フォルダを作成します。
vscodeを立ち上げて作成したフォルダをドラッグアンドドロップします。
フォルダの中にindex.phpファイルを作成します。

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8">
    <title>ウェブサーバーのテスト</title>
  </head>
  <body>
    <p>HelloWorld!</p>
  </body>
</html>

上のターミナルから新しいターミナルを立ち上げてコマンドを入力(ポート番号はなんでもOK)

php -S 127.0.0.1:8080

127.0.0.1:8080にアクセスすると
スクリーンショット 2022-04-27 16.35.59.png

が表示されました!

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