我一直在尝试为朋友做一个排名系统。一切准备就绪,但出现了一个错误。错误:
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']);
?>
请不要小看,我是新来的。先感谢您。