resist/twigphpfunctions

Small Twig extension that allows PHP functions in templates

Maintainers

Package info

github.com/resist/TwigPhpFunctions

Homepage

pkg:composer/resist/twigphpfunctions

Statistics

Installs: 3 111

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2021-04-18 11:04 UTC

This package is auto-updated.

Last update: 2026-03-01 00:56:23 UTC


README

Allowing PHP functions in templates

Installation

composer require resist/twigphpfunctions

Usage

Constructor parameter is an array of built in PHP function names as string.

new TwigPhpFunctions(['ceil', 'floor']);

In Symfony framework

In config/services.yaml:

parameters:
    app.allowed_php_functions_in_templates: ['ceil', 'floor']

services:
    resist\Twig\TwigPhpFunctions:
        tags: ['twig.extension']
        arguments:
        $functions: '%app.allowed_php_functions_in_templates%'

Without framework

use resist\Twig\TwigPhpFunctions;
use const ALLOWED_PHP_FUNCTION_IN_TEMPLATES;

/** @var \Twig\Environment $twig */
$twig->addExtension(new TwigPhpFunctions(ALLOWED_PHP_FUNCTION_IN_TEMPLATES));