whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Byte
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/Byte/trim.php
<?php declare(strict_types=1); namespace Psl\Str\Byte; use function trim as php_trim; /** * Returns the given string with whitespace stripped from the beginning and end. * * If the optional character mask isn't provided, the following characters will * be stripped: space, tab, newline, carriage return, NUL byte, vertical tab. * * @pure */ function trim(string $string, ?string $char_mask = null): string { return null === $char_mask ? php_trim($string) : php_trim($string, $char_mask); }
Copyright ©2021 || Defacer Indonesia