在确定连接数据库没有问题后,试图获取表名: public function tables(){ $tables = mysql_query("SHOW TABLES"); while($tables = mysql_fetch_array($tables)){ echo "表总数:".sizeof($tables); $tablelist[]=$tables; } return $tablelist; }调用后, 为什么总是只能得到第一个表名?
添加回答
举报
0/150
提交
取消