Twig String equals 0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description | |
----------- | |
For twig, a string equals 0 | |
Test script | |
----------- | |
{% set test = 'a string' %} | |
{% if test == 0 %} | |
test == 0 | |
{% else %} | |
test != 0 | |
{% endif %} | |
Expected result | |
--------------- | |
test!=0 | |
Actual result | |
------------- | |
test==0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment