当前位置:Gxlcms > PHP教程 > PHP错误代码Parseerror:syntaxerror,unexpected解决方法

PHP错误代码Parseerror:syntaxerror,unexpected解决方法

时间:2021-07-01 10:21:17 帮助过:161人阅读

Parse error: syntax error, unexpected T_STRING in C:\AppServ\www\1.php on line 3

<?php
    
$s=array('你好','我好','大家好');
  
   shuffle($s); 
       
   for($i=0;$i<=2;$i++){
       echo $s[$i];
   echo '
';
   }
   
   
    
?>

出现标题中的错误,怎么办哦?



------解决方案--------------------

$s=array('你好','我好','大家好');


分号写错了 ,应该是";" 不是";" 一切都要英文的啊

人气教程排行