mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
	
	
		
			17 lines
		
	
	
		
			320 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			320 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | 
 | ||
|  | /* | ||
|  |  * Smarty plugin | ||
|  |  * ------------------------------------------------------------- | ||
|  |  * Type:     modifier | ||
|  |  * Name:     lower | ||
|  |  * Purpose:  convert string to lowercase | ||
|  |  * ------------------------------------------------------------- | ||
|  |  */ | ||
|  | function smarty_modifier_lower($string) | ||
|  | { | ||
|  | 	return strtolower($string); | ||
|  | } | ||
|  | 
 | ||
|  | ?>
 |