PHP code example of shapecode / twig-string-loader-bundle
1. Go to this page and download the library: Download shapecode/twig-string-loader-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
shapecode / twig-string-loader-bundle example snippets
php
// app/AppKernel.php
//...
class AppKernel extends Kernel
{
//...
public function registerBundles()
{
$bundles = array(
...
new Shapecode\Bundle\TwigStringLoaderBundle\ShapecodeTwigStringLoaderBundle(),
);
//...
return $bundles;
}
//...
}
php
// bundles.php
//...
return [
// .....
Shapecode\Bundle\TwigStringLoaderBundle\ShapecodeTwigStringLoaderBundle::class => ['all' => true],
];
php
$this->get('twig')->render('Hello {{ world }}', array(
'world' => 'World'
));