mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			387 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			387 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | 
 | ||
|  | /* | ||
|  |  * Smarty plugin | ||
|  |  * ------------------------------------------------------------- | ||
|  |  * Type:     modifier | ||
|  |  * Name:     replace | ||
|  |  * Purpose:  simple search/replace | ||
|  |  * ------------------------------------------------------------- | ||
|  |  */ | ||
|  | function smarty_modifier_replace($string, $search, $replace) | ||
|  | { | ||
|  |     return str_replace($search, $replace, $string); | ||
|  | } | ||
|  | 
 | ||
|  | /* vim: set expandtab: */ | ||
|  | 
 | ||
|  | ?>
 |