Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F391109
modifier.lower.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
580 B
Subscribers
None
modifier.lower.php
View Options
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* 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>
* @param string $
* @return string
*/
function
smarty_modifier_lower
(
$string
)
{
if
(
function_exists
(
'mb_strtolower'
))
{
return
mb_strtolower
(
$string
);
}
else
{
return
strtolower
(
$string
);
}
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Feb 22, 20:21 (20 h, 45 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25450
Default Alt Text
modifier.lower.php (580 B)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment