使用PHP编写批量删除功能,代码运行报错,提示unexpected 'foreach' (T_FOREACH)
<?php $con = mysql_connect("localhost",'root','123456') or die('error:'.mysql_error()); mysql_select_db('student',$con) or die('error:'.mysql_error()); mysql_query('set NAMES utf8'); $id=$_POST['id']; if(is_array($id) && !empty($id)){ foreach($id as $ide){ $exec="delete from mysearch where Id=".$ide; $result=mysql_query($exec); } } mysql_close(); Header("search_index.php"); ?>
错误提示为:
Parse error: syntax error, unexpected 'foreach' (T_FOREACH) in I:\php-moive\search_delall.php on line 7
百度“ unexpected 'foreach' (T_FOREACH)”几乎找不到相关答案。。
后来发现是因为语法出现错误:
if(is_array($id) && !empty($id)){ <-- 这个大括号打成全角了
Parse error: syntax error, unexpected xxx 一般是报错的内容前面有语法错误。
语法错误特点
1、程序还没开始运行。
2、程序报的是Parse error错误。
推荐教程:PHP视频教程