VisualStudio Code
유용한 단축키
Ctrl
+ ,
Ctrl 키와 콤마(,)를 동시에 누르면 Settings 화면이 나온다.
Word Wrap
View > Word Wrap (
ALT
+Z
)
유용한 Extensions(확장 프로그램)
Material Theme
Material Design Icons for Visual Studio Code
1. 설치하기
VS Code Extensions MarketPlace에서 Material Theme를 찾아서 설치합니다.
2. Color Theme 바꾸기
Manage(좌측하단 기어아이콘) > Themes > Color Theme 를 선택합니다. 그다음 원하는 테마를 선택합니다. 저는 Meterial Theme Darker High Contrast를 선택하였습니다.
php 개발환경 구축
https://code.visualstudio.com/docs/languages/php
php 설치
PHP extensions 설치
PHP IntelliSense 설치
PHP intelliSense는 코딩과정에서 자동완성 같은 코딩을 좀 더 편리하게 해주는 기능을 제공한다.
PHP Debug 설치
디버깅 기능을 지원해 주는 확장 프로그램이다
There are three settings to control the PHP linter:
php.validate.enable: controls whether to enable PHP linting at all. Enabled by default. php.validate.executablePath: points to the PHP executable on disk. Set this if the PHP executable is not on the system path. php.validate.run: controls whether the validation is triggered on save (value: "onSave") or on type (value: "onType"). Default is on save.
php 실행환경 구성
Settings (Ctrl+,) 을 누른 후 다운받은 php 의 경로를 넣어준다.
{
........................
"php.validate.enable": true,
"php.executablePath": "C:\\PHP\\php-8.2.4-Win32-vs16-x64\\php.exe"
}