Voting

: min(four, three)?
(Example: nine)

The Note You're Voting On

deoomen
3 years ago
Watch out after PHP 8.0!

Sample code:

<?php
echo max(0,'hello');
?>

Before PHP 8.0 will return int(0) but since PHP 8.0 above code returns string("hello")!!

<< Back to user notes page

To Top