2020. 7. 9. 22:47ㆍPHP
1. Syntax Highlighter 설치
https://marketplace.visualstudio.com/items?itemName=evgeniypeshkov.syntax-highlighter
2. settings.json 내용 수정
settings.json 경로 찾는 방법은 여러가지가 있는데,
2-1. file > preferences > settings > 입력창에 php나 settings같은 단어 쳐서 [Edit in settings.json] 링크 타고 들어가거나 2-2. file:///C://Users//user//AppData//Roaming//Code//User//settings.json 자기 컴퓨터에서 어떻게든 찾아서 들어가면 된다.
"files.associations": { "*.html": "php" } 를 추가한다.
```
{
"files.autoGuessEncoding": true,
"window.zoomLevel": -1,
"terminal.integrated.shell.windows": "C:\\windows\\System32\\cmd.exe",
"C_Cpp.updateChannel": "Insiders",
"php.validate.executablePath": "C:/xampp/php/php.exe",
"files.associations": { "*.html": "php" }
}
```
vscode php in html highlight
vscode php syntax highlight
'PHP' 카테고리의 다른 글
php 다차원 배열 정렬 multidimensional array sort by value (0) | 2020.08.10 |
---|---|
PHP curl 타고타고 크롤링 (navigating and scraping multiple pages) (0) | 2020.07.17 |
php $_SERVER['http_referer'] 용도 (0) | 2020.06.07 |
php microtime, codeigniter profiler 페이지 로딩시간 확인 (0) | 2020.05.30 |
session_start() 로컬호스트 연결 에러 ERR_CONNECTION_RESET (0) | 2020.01.23 |