whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/to_int.php
<?php declare(strict_types=1); namespace Psl\Str; /** * Returns the given string as an integer, or null if the string isn't numeric. * * @pure */ function to_int(string $string): ?int { if ((string) (int) $string === $string) { return (int) $string; } return null; }
Copyright ©2021 || Defacer Indonesia