Smarty v.3 preg_match plugin

I wrote a plugin for Smarty which allows to use the php preg_match function inside a template:

Usage:

  1. Copy the plugin in Smarty/plugins/function.preg_match.php
  2. In the template use the following code
{$haystack="cow,dog,niddle"}
{if {preg_match pattern="niddle" subject=$haystack}}
  {$matches|print_r}
{/if}

(more…)