Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12742630
modifiercompiler.upper.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
687 B
Referenced Files
None
Subscribers
None
modifiercompiler.upper.php
View Options
<?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
Details
Attached
Mime Type
text/x-php
Expires
Sun, Nov 16, 13:51 (4 h, 14 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3149833
Default Alt Text
modifiercompiler.upper.php (687 B)
Attached To
Mode
rOBSIDIAN Obsidian Workspaces
Attached
Detach File
Event Timeline
Log In to Comment