mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-04 16:20:55 +02:00
17 lines
320 B
PHP
17 lines
320 B
PHP
<?php
|
|
|
|
/*
|
|
* Smarty plugin
|
|
* -------------------------------------------------------------
|
|
* Type: modifier
|
|
* Name: upper
|
|
* Purpose: convert string to uppercase
|
|
* -------------------------------------------------------------
|
|
*/
|
|
function smarty_modifier_upper($string)
|
|
{
|
|
return strtoupper($string);
|
|
}
|
|
|
|
?>
|