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_left.php
<?php declare(strict_types=1); namespace Psl\Str\Byte; use function ltrim; /** * Returns the given string with whitespace stripped from the left. * * 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_left(string $string, ?string $char_mask = null): string { return null === $char_mask ? ltrim($string) : ltrim($string, $char_mask); }
Copyright ©2021 || Defacer Indonesia