]> git.mxchange.org Git - friendica.git/blob - vendor/smarty/smarty/libs/plugins/modifier.regex_replace.php
Add Smarty to Composer
[friendica.git] / vendor / smarty / smarty / libs / plugins / modifier.regex_replace.php
1 <?php
2 /**
3  * Smarty plugin
4  *
5  * @package    Smarty
6  * @subpackage PluginsModifier
7  */
8
9 /**
10  * Smarty regex_replace modifier plugin
11  * Type:     modifier<br>
12  * Name:     regex_replace<br>
13  * Purpose:  regular expression search/replace
14  *
15  * @link    http://smarty.php.net/manual/en/language.modifier.regex.replace.php
16  *          regex_replace (Smarty online manual)
17  * @author  Monte Ohrt <monte at ohrt dot com>
18  *
19  * @param string       $string  input string
20  * @param string|array $search  regular expression(s) to search for
21  * @param string|array $replace string(s) that should be replaced
22  * @param int          $limit   the maximum number of replacements
23  *
24  * @return string
25  */
26 function smarty_modifier_regex_replace($string, $search, $replace, $limit = - 1)
27 {
28     if (is_array($search)) {
29         foreach ($search as $idx => $s) {
30             $search[ $idx ] = _smarty_regex_replace_check($s);
31         }
32     } else {
33         $search = _smarty_regex_replace_check($search);
34     }
35
36     return preg_replace($search, $replace, $string, $limit);
37 }
38
39 /**
40  * @param  string $search string(s) that should be replaced
41  *
42  * @return string
43  * @ignore
44  */
45 function _smarty_regex_replace_check($search)
46 {
47     // null-byte injection detection
48     // anything behind the first null-byte is ignored
49     if (($pos = strpos($search, "\0")) !== false) {
50         $search = substr($search, 0, $pos);
51     }
52     // remove eval-modifier from $search
53     if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[ 1 ], 'e') !== false)) {
54         $search = substr($search, 0, - strlen($match[ 1 ])) . preg_replace('![e\s]+!', '', $match[ 1 ]);
55     }
56
57     return $search;
58 }