Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
brick /
math /
src /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
DivisionByZeroException.php
874
B
-rw-r--r--
2020-11-17 16:24
IntegerOverflowException.php
612
B
-rw-r--r--
2020-11-17 16:24
MathException.php
268
B
-rw-r--r--
2020-11-17 16:24
NegativeNumberException.php
248
B
-rw-r--r--
2020-11-17 16:24
NumberFormatException.php
799
B
-rw-r--r--
2020-11-17 16:24
RoundingNecessaryException.php
508
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php declare(strict_types=1); namespace Brick\Math\Exception; /** * Exception thrown when attempting to create a number from a string with an invalid format. */ class NumberFormatException extends MathException { /** * @param string $char The failing character. * * @return NumberFormatException * * @psalm-pure */ public static function charNotInAlphabet(string $char) : self { $ord = \ord($char); if ($ord < 32 || $ord > 126) { $char = \strtoupper(\dechex($ord)); if ($ord < 10) { $char = '0' . $char; } } else { $char = '"' . $char . '"'; } return new self(sprintf('Char %s is not a valid character in the given alphabet.', $char)); } }