Skip to content

Instantly share code, notes, and snippets.

@eyemyth
Created October 12, 2016 21:49
Show Gist options
  • Save eyemyth/1cc944c4d80a346bf2734fef329544a2 to your computer and use it in GitHub Desktop.
Save eyemyth/1cc944c4d80a346bf2734fef329544a2 to your computer and use it in GitHub Desktop.
#!/usr/bin/env php
<?php
$arg = 'T';
$vehicle = ( ( $arg == 'B' ) ? 'bus' :
( $arg == 'A' ) ? 'airplane' :
( $arg == 'T' ) ? 'train' :
( $arg == 'C' ) ? 'car' :
( $arg == 'H' ) ? 'horse' :
'feet' );
echo $vehicle;
echo ($arg == 'H')?1:0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment