Page MenuHomeDevCentral

modifiercompiler.upper.php
No OneTemporary

modifiercompiler.upper.php

<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty upper modifier plugin
*
* Type: modifier<br>
* Name: lower<br>
* Purpose: convert string to uppercase
*
* @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual)
* @author Uwe Tews
* @param array $params parameters
* @return string with compiled code
*/
function smarty_modifiercompiler_upper($params, $compiler)
{
if (Smarty::$_MBSTRING) {
return 'mb_strtoupper(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')' ;
}
// no MBString fallback
return 'strtoupper(' . $params[0] . ')';
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 13, 16:49 (17 h, 23 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2644203
Default Alt Text
modifiercompiler.upper.php (687 B)

Event Timeline