9951 explained code solutions for 126 technologies


twigHow to check if a string contains a substring in PHP Twig?


You can check if a string contains a substring in PHP Twig using the contains filter.

{% if 'Hello World'|contains('World') %}
    The string contains the substring.
{% endif %}

The output of the above code will be:

The string contains the substring.

The code consists of the following parts:

  1. {% if 'Hello World'|contains('World') %} - This part checks if the string Hello World contains the substring World.
  2. The string contains the substring. - This part is the output of the code.

Helpful links

  1. Twig Filters
  2. Twig Documentation

Edit this code on GitHub