/ Published in: PHP
Expand |
Embed | Plain Text
// INT : odd or even > return TRUE or FALSE function neo_is_odd( $nb ) { return $nb % 2 == 0 ? false:true; }
You need to login to post a comment.
// INT : odd or even > return TRUE or FALSE function neo_is_odd( $nb ) { return $nb % 2 == 0 ? false:true; }
You need to login to post a comment.