.TWIG 파일 확장자
Twig Template
| 개발사 | Sensio Labs |
| 인기도 |
3.7 | 10 투표 |
TWIG 파일이란 무엇인가요?
File created by Twig, a PHP optimizing template engine; contains a template that will be generated into a specific final format, such as a HTML, JavaScript, XML, or CSS based file; the twig extension determines what engine should be used to create the final format whether it's the Twig or PHP engine.
추가 정보
The Twig application creates more concise syntax than normal PHP, which makes the TWIG files more readable. Twig has two types of syntax:
- {{ ... }} - Prints a variable or the result of an expression to the template.
- {% ...%} - A tag that controls the logic of the template; used to execute statements.
참고: The Symfony PHP framework uses Twig as its default template engine.
일반적인 .TWIG 파일 이름
index.html.twig - Indicates the template will be generated in HTML format with the Twig engine.
index.css.twig - Indicates the template will be generated in CSS format with the Twig engine.
TWIG 파일을 열거나 참조하는 프로그램
Windows
Mac
Linux