!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.92 GB of 200.55 GB (58.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     modifier.truncate.php (2.18 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Smarty plugin
 *
 * @package Smarty
 * @subpackage PluginsModifier
 */
 
/**
 * Smarty truncate modifier plugin
 * 
 * Type:     modifier<br>
 * Name:     truncate<br>
 * Purpose:  Truncate a string to a certain length if necessary,
 *               optionally splitting in the middle of a word, and
 *               appending the $etc string or inserting $etc into the middle.
 * 
 * @link http://smarty.php.net/manual/en/language.modifier.truncate.php truncate (Smarty online manual)
 * @author Monte Ohrt <monte at ohrt dot com> 
 * @param string  $string      input string
 * @param integer $length      length of truncated text
 * @param string  $etc         end string
 * @param boolean $break_words truncate at word boundary
 * @param boolean $middle      truncate in the middle of text
 * @return string truncated string
 */
function smarty_modifier_truncate($string$length 80$etc '...'$break_words false$middle false) {
    if (
$length == 0)
        return 
'';

    if (
SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
        if (
mb_strlen($stringSMARTY_RESOURCE_CHAR_SET) > $length) {
            
$length -= min($lengthmb_strlen($etcSMARTY_RESOURCE_CHAR_SET));
            if (!
$break_words && !$middle) {
                
$string preg_replace('/\s+?(\S+)?$/u'''mb_substr($string0$length 1SMARTY_RESOURCE_CHAR_SET));
            } 
            if (!
$middle) {
                return 
mb_substr($string0$lengthSMARTY_RESOURCE_CHAR_SET) . $etc;
            }
            return 
mb_substr($string0$length 2SMARTY_RESOURCE_CHAR_SET) . $etc mb_substr($string, - $length 2$lengthSMARTY_RESOURCE_CHAR_SET);
        }
        return 
$string;
    }
    
    
// no MBString fallback
    
if (isset($string[$length])) {
        
$length -= min($lengthstrlen($etc));
        if (!
$break_words && !$middle) {
            
$string preg_replace('/\s+?(\S+)?$/'''substr($string0$length 1));
        } 
        if (!
$middle) {
            return 
substr($string0$length) . $etc;
        }
        return 
substr($string0$length 2) . $etc substr($string, - $length 2);
    }
    return 
$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.0098 ]--