double in php

Solutions on MaxInterview for double in php by the best coders in the world

showing results for - "double in php"
Tam
09 Aug 2019
1<?php
2$a = 1.234;
3$b = 1.2e3;
4$c = 7E-10;
5$d = 1_234.567; // PHP >= 7.4.0
6?>