Voting

: two minus one?
(Example: nine)

The Note You're Voting On

Anthony
7 years ago
The binary notation is NOT supported until php7.2
<?php
// PHP <7.2 | PHP >=7.2
echo intval(0b11); // 3 | 3
echo intval(-0b11); // -3 | -3
echo intval('0b11'); // 0 | 0
echo intval('-0b11'); // 0 | 0
echo intval('0b11', 0); // 0 | 3
echo intval('-0b11', 0); // 0 | -3
?>

<< Back to user notes page

To Top