REDROOM
PHP 8.3.30
Path:
Logout
Edit File
Size: 969 B
Close
/home/getspomw/itechservicellc.com/vendor/brick/math/src/Exception/NumberFormatException.php
Text
Base64
<?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 { public static function invalidFormat(string $value) : self { return new self(\sprintf( 'The given value "%s" does not represent a valid number.', $value, )); } /** * @param string $char The failing character. * * @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)); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 6
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
DivisionByZeroException.php
736 B
lrw-r--r--
2025-10-28 20:21:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
IntegerOverflowException.php
526 B
lrw-r--r--
2025-10-28 20:21:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
MathException.php
156 B
lrw-r--r--
2025-10-28 20:21:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
NegativeNumberException.php
248 B
lrw-r--r--
2025-10-28 20:21:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
NumberFormatException.php
969 B
lrw-r--r--
2025-10-28 20:21:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
RoundingNecessaryException.php
459 B
lrw-r--r--
2025-10-28 20:21:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).