私は友人のランキングシステムをやろうとしています。すべての準備ができていますが、エラーが発生します。エラー:
Parse error: syntax error, unexpected T_STRING, expecting '(' in /blablabla/sn_rank.php on line 8
これが私のコードです:
<?
function lul($pts, $low, $high) {
if($pts <= $low) return false;
if($pts >= $high) return false;
return true;
}
function get_rank($pts){
if lul($pts, "0", "75"){
return "Newcomer";
}
if lul($pts, "75", "175"){
return "Junior";
}
if lul($pts, "175", "325"){
return "Senior";
}
if lul($pts,"325", "525"){
return "Advanced";
}
if lul($pts, "525", "775"){
return "Veteran";
}
}
echo get_rank($_GET['pts']);
?>
書き留めないでください、私はここに新しいです。前もって感謝します。