Skip to content

Instantly share code, notes, and snippets.

@Sirpyerre
Created November 2, 2022 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sirpyerre/1ce0b75be20c15797023237aa977db2b to your computer and use it in GitHub Desktop.
Save Sirpyerre/1ce0b75be20c15797023237aa977db2b to your computer and use it in GitHub Desktop.
PHP ternary operator
<?php
$eligible = true;
$hasCredit = false;
$message = $eligible ?
($hasCredit? 'Can use the credit':'Not enough credit')
: 'Not eligible to buy';
echo $message;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment