Voting

: max(seven, one)?
(Example: nine)

The Note You're Voting On

alexey dot klimko at gmail dot com
13 years ago
If you want to implode an array of booleans, you will get a strange result:
<?php
var_dump
(implode('',array(true, true, false, false, true)));
?>

Output:
string(3) "111"

TRUE became "1", FALSE became nothing.

<< Back to user notes page

To Top