PHP 5.6.31 Released

Voting

Please answer this simple SPAM challenge: min(one, eight)?
(Example: nine)

The Note You're Voting On

jongbumi at gmail dot com
1 year ago
PHP 5.3, 5.4, 5.5
<?php
$fInfinty
= pow(1000, 1000); // float(INF)
$fResult = round(123.456, $fInfinty); // double(123)
?>

PHP 5.6
<?php
$fInfinty
= pow(1000, 1000); // float(INF)
$fResult = round(123.456, $fInfinty); // float(0)
?>

PHP 7
<?php
$fInfinty
= pow(1000, 1000); // float(INF)
$fResult = round(123.456, $fInfinty); // null
?>

<< Back to user notes page

To Top