mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
5 lines
78 B
PHP
5 lines
78 B
PHP
<?php
|
|
echo 1.8e307; // 1.8E+307
|
|
echo 1.8e308; // INF
|
|
echo -1.8e308; // -INF
|