$aは10以下です。
<?php $a = 5; if ($a > 10) { print ("$aは10より大きい"); } else { print ("$aは10以下"); } ?> です。 ※ここはPerlと同じだ(^○^)