mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			412 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			412 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /*
 | |
|  * Smarty plugin
 | |
|  * -------------------------------------------------------------
 | |
|  * Type:     modifier
 | |
|  * Name:     regex_replace
 | |
|  * Purpose:  regular epxression search/replace
 | |
|  * -------------------------------------------------------------
 | |
|  */
 | |
| function smarty_modifier_regex_replace($string, $search, $replace)
 | |
| {
 | |
|     return preg_replace($search, $replace, $string);
 | |
| }
 | |
| 
 | |
| /* vim: set expandtab: */
 | |
| 
 | |
| ?>
 |