instanceof

December 20, 2013 ยท View on GitHub

test instanceof in Core extension

Checks whether a variable is an instantiated object of a certain class

$twig->render('template.twig', array(
    'object' => new SplFileObject('access.log', 'r')
));
{% if object is instance of('SplFileInfo') %}
  {{ object.path }}
{% endif %}