Home >Backend Development >PHP Tutorial >这个代码弄错了将会出现什么后果?该如何处理

这个代码弄错了将会出现什么后果?该如何处理

WBOY
WBOYOriginal
2016-06-13 10:00:32943browse

这个代码弄错了将会出现什么后果?
第一种是正确的。第二种是错误的,字段间不带豆号
如果按第二种的做法弄,会出现什么果?

第一种:
{
  $r=$empire->fetch1("select id,ddd,aaa,bbb from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' and classid='$classid' limit 5");
  if($r[id])
  {
  ?>
document.write('=$r[ddd]?>', '=$r[aaa]?>', '=$r[bbb]?>');

    }
}
else
{
?>
document.write('登录后才能查看');
}
db_close();
$empire=null;
?>

第二种:
{
  $r=$empire->fetch1("select id,ddd aaa bbb from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' and classid='$classid' limit 5");
  if($r[id])
  {
  ?>
document.write('=$r[ddd]?>', '=$r[aaa]?>', '=$r[bbb]?>');

    }
}
else
{
?>
document.write('登录后才能查看');
}
db_close();
$empire=null;
?>

其中ddd aaa bbb 是被控字段

------解决方案--------------------
没有什么关系!
视不同数据库而定
------解决方案--------------------
没什么,可能出错。可能被看为一个alias
------解决方案--------------------

探讨

没有什么关系!
视不同数据库而定

------解决方案--------------------
select id,ddd aaa bbb 这种情况会出错。
select id,ddd aaa 会把aaa当成ddd的别名
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn