From 6d0fbeb0a7fde0cc8bae6c9944ea6b017d96968a Mon Sep 17 00:00:00 2001 From: Nathan Kinkade Date: Sun, 16 Mar 2008 20:42:30 +0000 Subject: Moved some external packages into lib to make system more self contained --- .../plugins/modifier.regex_replace.php | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/smarty-2.6.8/plugins/modifier.regex_replace.php (limited to 'lib/smarty-2.6.8/plugins/modifier.regex_replace.php') diff --git a/lib/smarty-2.6.8/plugins/modifier.regex_replace.php b/lib/smarty-2.6.8/plugins/modifier.regex_replace.php new file mode 100644 index 0000000..d4d2030 --- /dev/null +++ b/lib/smarty-2.6.8/plugins/modifier.regex_replace.php @@ -0,0 +1,35 @@ + + * Name: regex_replace
+ * Purpose: regular expression search/replace + * @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php + * regex_replace (Smarty online manual) + * @author Monte Ohrt + * @param string + * @param string|array + * @param string|array + * @return string + */ +function smarty_modifier_regex_replace($string, $search, $replace) +{ + if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) { + /* remove eval-modifier from $search */ + $search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]); + } + + return preg_replace($search, $replace, $string); +} + +/* vim: set expandtab: */ + +?> -- cgit v1.2.3