这段代码是在别人写的脚本中找到的,我被要求编辑。它似乎没有做任何事情..我想知道它到底为什么在那里,如果我删除它,世界上某个地方是否会出现严重错误..
我错过了什么吗?
//begin mystery code - i have no idea what this chunk of code is doing..
$result = mysql_query("SHOW COLUMNS FROM ".$table."");
$i = 0;
if (mysql_num_rows($result) > 0) {
while ($row = mysql_fetch_assoc($result)) {
$i++;
}
}
//end mystery code
$result
没有在其他任何地方引用..