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

VSCodeでPHPをローカル実行してみた

Last updated at Posted at 2023-10-05

ひょんなことからphpコードをいただいたのだが、手元でパッと確認するにはどうしたら良いのかな、と思って調べた。(いつもはDocker使っちゃってる)
なんやアプリダウンロードせぇだの出てきたんだが…なんと、VSCodeの拡張機能で簡単にローカルサーバーを立ち上げられるらしい!
それが一番簡単じゃん!やってみよう!

必要なもの

  • VSCode
  • 動かしたいphpのソース

手順

  1. VSCodeでPHP Serverという拡張機能を探してインストールする
  2. index.phpなど実行したいファイルを開き、ウィンドウ右上にある青いボタンを押す
  3. ブラウザで実行されたphpファイルが開かれる!
    image.png

注意

上記手順で実行ボタン押したらphp not foundって怒られた。
その場合、設定でPhpserver: PHP Pathを検索し、パスを指定してあげる。
phpがある場合、ターミナルでwhich phpと打てばパスがわかる。

image.png

その他のコマンド

Command + Shift + pphpserverって打つと、コマンドリストが表示される。
停止とか、リロードとかはここから。

image.png

あとがき

AtomからVSCodeに乗り換えてしばらく経ちますが、結構気に入ってます。

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