Answers for "twig check variables type"

1

twig check variables type

{% set test_var = craft.entries %}

{% if test_var is of_type('object') %}
  true
{% endif %}
Posted by: Guest on July-07-2021
1

twig check variables type

{% set test_var = craft.entries %}

{{ test_var|get_type }}
{# Outputs: object #}
Posted by: Guest on July-07-2021

Browse Popular Code Answers by Language