php if endif code example

Example 1: php endif

<?php
$a = 4;
if($a < 5):
  echo "Less than five";
endif;
?>

Example 2: php end if

<?php
	if (something):
		echo "something";
	endif;
?>

Example 3: php if elseif

$a = random_int(0, 10);
$b = random_int(0, 10);
if ($a > $b) {
  echo 'a is greater than b';
} elseif ($a == $b) {
  echo 'a is equal to b';
} else {
  echo 'a is less than b';
}

Example 4: php if endif

#1
if ($var1 == true) {
  // codice da eseguire
} else if ($var2 == true) {
  // codice da eseguire
} else {
  // codice da eseguire
}
# 2
<?php if ($var1 == true): ?>
  // codice da eseguire
<?php elseif ($var2 == true): ?>
  // codice da eseguire
<?php else: ?>
  // codice da eseguire
<?php endif; ?>

Tags:

Misc Example