Answers for "php short hand statement"

PHP
2

php ternary shorthand

$y = $x ? "true" : "false";
Posted by: Guest on May-25-2020
2

php if short form

<?php echo ($qte > 0) ? $qte : 0; ?>
Posted by: Guest on November-14-2020

Browse Popular Code Answers by Language