<?php
/* 間違った方法 */
if ($a > $b):
echo $a." is greater than ".$b;
else if ($a == $b): // コンパイル不能
echo "The above line causes a parse error.";
endif;
/* 正しい方法 */
if ($a > $b):
echo $a." is greater than ".$b;
elseif ($a == $b): // 二つの単語を分割せず組み合わせていることに注目
echo $a." equals ".$b;
else:
echo $a." is neither greater than or equal to ".$b;
endif;
?>