mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01: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);
 | 
						|
}
 | 
						|
 | 
						|
?>
 |