Código PHP:
Ver original
<?php namespace controller class FrontEnd{ public function invoke($func){ include './html/${func}.php'; return $func(); } } ?>
Y no me identifica la variable $func dentro del string utilizando sintaxis compleja de PHP.
¿A qué se debe esto?