Skip to content

Instantly share code, notes, and snippets.

@ZeusAFK
Created May 16, 2018 19:47
Show Gist options
  • Save ZeusAFK/40f1693765d7f91898c3862b92122b8a to your computer and use it in GitHub Desktop.
Save ZeusAFK/40f1693765d7f91898c3862b92122b8a to your computer and use it in GitHub Desktop.
<?php
$n = 4;
if($n % 2 == 0)
$par = true;
else
$par = false;
echo $par;
$par = $n % 2 == 0 ? $par = true : $par = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment