Voting

: max(two, five)?
(Example: nine)

The Note You're Voting On

martin dot aarhof at gmail dot com
13 years ago
<?php
$str
= ' ';
var_dump(empty($str)); // boolean false
?>

So remember to trim your strings first!

<?php
$str
= ' ';
$str = trim($str);
var_dump(empty($str)); // boolean true
?>

<< Back to user notes page

To Top