两个Parse error: syntax error, unexpected T_VARIABLE 异常
程序员文章站
2022-04-16 14:45:53
...
两个Parse error: syntax error, unexpected T_VARIABLE 错误
代码如下:
1. on line 3
include "Zip.class.php"
$z=new PHPZip(); //新建立一个zip的类
//方法一:
$z -> Zip("", "out1.zip"); //添加当前目录和子目录下的所有档案
//方法二:
/*
$files=array('1.txt','gb.txt');
$files[]='5.txt';
$z -> Zip($files, "out2.zip"); //添加文件列表
*/
//方法三:
/*
$z -> Zip("/usr/local/sext/", "out3.zip"); //添加指定目录
*/
?>
2.on line 3
include "ie.socket.php"
$temp=new HTTPs ('www.baidu.com');
$temp->getPage('/index.html');
echo $temp->getBody();
?>
------解决方案--------------------
include "ie.socket.php" ; //结尾分号
代码如下:
1. on line 3
include "Zip.class.php"
$z=new PHPZip(); //新建立一个zip的类
//方法一:
$z -> Zip("", "out1.zip"); //添加当前目录和子目录下的所有档案
//方法二:
/*
$files=array('1.txt','gb.txt');
$files[]='5.txt';
$z -> Zip($files, "out2.zip"); //添加文件列表
*/
//方法三:
/*
$z -> Zip("/usr/local/sext/", "out3.zip"); //添加指定目录
*/
?>
2.on line 3
include "ie.socket.php"
$temp=new HTTPs ('www.baidu.com');
$temp->getPage('/index.html');
echo $temp->getBody();
?>
------解决方案--------------------
include "ie.socket.php" ; //结尾分号
相关文章
相关视频
推荐阅读
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting 异常怎么解决
-
PHP解析错误 PHP Parse error: syntax error, unexpected '[' in
-
Parse Error: syntax error, unexpected $end 错误_PHP教程
-
PHP异常Parse error: syntax error, unexpected错误解决方法
-
Parse error: syntax error, unexpected T_STRING in C:AppServwww1.php on line 三
-
Parse Error: syntax error, unexpected $end 错误
-
Parse error: syntax error, unexpected T_FUNCTION, expecting ')'该如何解决