twigHow to use Twig with PHP?
Twig is a templating engine for PHP. It allows developers to write HTML templates with a simple syntax that is easy to read and maintain.
<?php
require_once 'vendor/autoload.php';
$loader = new Twig_Loader_Filesystem('templates');
$twig = new Twig_Environment($loader);
echo $twig->render('index.html', array('name' => 'Fabien'));
This example code will render the index.html
template located in the templates
directory, and pass the name
variable with the value Fabien
to the template.
Code explanation
require_once 'vendor/autoload.php';
- This line loads the Twig autoloader, which is necessary for Twig to work.$loader = new Twig_Loader_Filesystem('templates');
- This line creates a new Twig loader object, which is used to locate the template files.$twig = new Twig_Environment($loader);
- This line creates a new Twig environment object, which is used to render the templates.echo $twig->render('index.html', array('name' => 'Fabien'));
- This line renders theindex.html
template, and passes thename
variable with the valueFabien
to the template.
Helpful links
More of Twig
- How to format a number using PHP and Twig?
- How to check if a string contains a substring in PHP Twig?
- How to integrate Twig with Yii2?
- How to use Twig in PHP to get the current year?
- How to use the 'foreach' loop with PHP and Twig?
- How to get a substring in PHP Twig?
- How to set a variable in PHP Twig?
- How to parse XLSX in Twig with PHP?
- How to trim a string in PHP Twig?
- How to parse XML in Twig with PHP?
See more codes...