harrydeluxe / php-liquid

A PHP port of Ruby's Liquid Templates
http://www.delacap.com/artikel/Liquid-Templates/
MIT License
239 stars 117 forks source link

Disable Casesensitive #62

Open CBox opened 4 years ago

CBox commented 4 years ago

When the data is:

$data = ["something" => "value"];

And using: {{Something}}

The replacement not working.

Where I need to add strtolower before to disable the Casesensitive?

Thanks