Last Updated: February 25, 2016
·
205
· superzamp

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
?>