Files
smarty/libs/plugins/modifiercompiler.lower.php

31 lines
870 B
PHP
Raw Normal View History

<?php
/**
2010-08-17 15:39:51 +00:00
* Smarty plugin
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
2010-08-17 15:39:51 +00:00
* Smarty lower modifier plugin
*
* Type: modifier<br>
* Name: lower<br>
* Purpose: convert string to lowercase
*
* @link http://smarty.php.net/manual/en/language.modifier.lower.php lower (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @author Uwe Tews
* @param array $params parameters
* @return string with compiled code
2010-08-17 15:39:51 +00:00
*/
function smarty_modifiercompiler_lower($params, $compiler)
{
if (function_exists('mb_strtolower')) {
2010-09-25 13:31:57 +00:00
return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strtolower(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET) : strtolower(' . $params[0] . '))' ;
} else {
return 'strtolower(' . $params[0] . ')';
}
}
?>