PHPverse 2025

Voting

: seven minus four?
(Example: nine)

The Note You're Voting On

Anonymous
5 years ago
PHP 7.2

$test = intval(150.20*100); //15019
$test2 = intval(15020); //15020
$test3 = intval(15020.0); //15020
$test4 = 150.20*100; //15020.0

<< Back to user notes page

To Top