<?php /** * this will format the string as money */ function smarty_modifier_date($string, $format) { return date($format, strtotime($string)); } ?>