Skip to content

Instantly share code, notes, and snippets.

@jonataa
Created May 11, 2014 01:03
Show Gist options
  • Save jonataa/b4fb1b1ee68f30e18908 to your computer and use it in GitHub Desktop.
Save jonataa/b4fb1b1ee68f30e18908 to your computer and use it in GitHub Desktop.
Operador Ternário
<?php
$numero = 30;
echo $numero > 20 ? 'maior que 20' : 'menor ou igual a 20';
/** Output
maior que 20
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment