Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created February 20, 2012 18:02
Show Gist options
  • Save raphaeldealmeida/1870361 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/1870361 to your computer and use it in GitHub Desktop.
Operador Ternário PHP 5.3
<?php
$input = 'Raphael';
if(!empty($input)){
echo $input;
}else{
echo 'Vazio' . "\n\r";
}
echo $nome = ($input)? $input : 'Vazio';
echo $nome = $input ?: 'Vazio';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment