NoER
(NoER)
注册会员

一般会员
UID 20884
精华
0
积分 92
帖子 92
金钱 92 喜悦币
威望 0
人脉 0
阅读权限 20
注册 2003-6-18
状态 离线
|
大家帮我看一下,就这么几行代码,我都找不到错在那!
<?PHP
$fp=fopen("point.txt","r+");
if($fp==FLASE)
echo "Can not open the file";
else
{
echo fgets($fp,12);
echo "Current Point is: " . ftell($fp);
}
?>
错误信息如下:
---------- PHP Debuger ----------
Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in C:\MyWeb\point.php3 on line 7
Output completed (0 sec consumed) - Normal Termination
|
|