Smarty v.3 preg_match plugin
January 17, 2012 in php
I wrote a plugin for Smarty which allows to use the php preg_match function inside a template:
Usage:
- Copy the plugin in Smarty/plugins/function.preg_match.php
- In the template use the following code
{$haystack="cow,dog,niddle"}
{if {preg_match pattern="niddle" subject=$haystack}}
{$matches|print_r}
{/if}