おぼえがき

おぼえがき、独り言、etc...

phpやる

とりあえずHello Worldを表示する

  • xampp入れる

XAMPP Installers and Downloads for Apache Friends

 

  • xamppフォルダ直下にhello.phpを作成する

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<?php
    $hello = "Hello World";
    print ($hello);
?>
</body>
</html>
  • xamppからApache起動する

 

 

 

 

→起動確認OK

 

 

visual studio codeの設定をする

settings.jsonを開く

(ctrl + , もしくは、ファイル>ユーザー設定>設定)

一番左のアイコンをクリック

{
    "[json]": {
       
        "editor.quickSuggestions": {
            "strings": true
        },
        "editor.suggest.insertMode": "replace"
    },
    "php.validate.executablePath": "C:\\xampp\\php\\php.exe"

}

PHP IntelliSense入れる?

PHP IntelliSense - Visual Studio Marketplace

PHP Intelephense?

PHP Intelephense - Visual Studio Marketplace

それぞれ何を入れてくれるのかは後々確認する

PHP Intelephenseは全般入れてくれるから不要なやつもある?