// this is an if/else conditionalif ($something){ // do something}else{ // do something else}// this is the ternary operator($something) ? dosomething() : dosomethingelse();