php获取mysql数据库中的所有表名的代码
程序员文章站
2022-03-24 22:57:58
...
php获取mysql数据库中的所有表名的代码
代码如下:
$server = 'localhost'; $user = 'root'; $pass = ''; $dbname = 'dayanmei_com'; $conn = mysql_connect($server,$user,$pass); if(!$conn) die("数据库系统连接失败!"); mysql_select_db($dbname) or die("数据库连接失败!"); $result = mysql_query("SHOW TABLES"); while($row = mysql_fetch_array($result)) { echo $row[0].""; } mysql_free_result($result);
注意php中列表mysql中所有表名的函数mysql_list_tables,已经删除了,建议不要使用该函数列表mysql数据表
以上就是php获取mysql数据库中的所有表名的代码_php技巧的内容,更多相关内容请关注PHP中文网(www.php.cn)!
相关文章:
上一篇: 纯php代码实现伪静态的方法
下一篇: php实现指定范围内多个随机数的方法