我正在尝试减少代码中的select语句,更新等数量,所以我认为我会尝试为此创建一个函数,但是我感到困惑的是我的努力在第一道障碍时失败了。< / p>
我已经全面地搜索了这个问题(我觉得),我发现在我找到的例子中找不到任何差异。
这是我的功能,附有打印语句,以帮助我诊断问题。
function select_statement($action, $table, $where){
print $action.' - ';
switch ($action){
case 'select':
print 'select used - ';
$thequery = 'SELECT * FROM '. $table . ' WHERE '. $where;
case 'insert':
print 'insert used - ';
$thequery = 'INSERT INTO '. $table;
case 'update':
print 'update used - ';
$thequery = 'UPDATE ' . $table . ' SET ';
}
print $thequery;
mysql_query($thequery);
}
这是调用该函数的行: -
$logins = select_statement('select', 'users', 'user_id=1');//calls function
结果如下: -
select - select used - insert used - update used - UPDATE users SET
正如您所看到的,代码触发了每个打印语句,似乎忽略了“case”语句。
我真的不确定我在这里做错了什么?
答案 0 :(得分:4)
您忘记使用break
。没有它,每个案例陈述将“落入”下一个并继续运作。 break
在每个case
语句的末尾停止执行;
switch ($action){
case 'select':
print 'select used - ';
$thequery = 'SELECT * FROM '. $table . ' WHERE '. $where;
break;
case 'insert':
print 'insert used - ';
$thequery = 'INSERT INTO '. $table;
break;
case 'update':
print 'update used - ';
$thequery = 'UPDATE ' . $table . ' SET ';
break;
}