PHP echo variable if not falsey
The shortest way to echo a variable if it's not falsey:
<?php
$a = 4;
$b = false;
$c = 0;
echo $a?:''; //outputs 4
echo $b?:''; //no output
echo $c?:''; //no output
?>
Written by Clément Salaün
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#