mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-05 00:30:54 +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);
|
||
|
}
|
||
|
|
||
|
?>
|