Home > Backend Development > PHP Tutorial > php获取mysql数据库中的所有表名的代码

php获取mysql数据库中的所有表名的代码

PHP中文网
Release: 2023-02-28 10:12:02
Original
5297 people have browsed it

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);
Copy after login

注意php中列表mysql中所有表名的函数mysql_list_tables,已经删除了,建议不要使用该函数列表mysql数据表

以上就是php获取mysql数据库中的所有表名的代码_php技巧的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!

相关文章:

PHP获取mysql数据库表字段的方法

PHP获取MySQL数据库里所有表的实现代码

php获取mysql数据库版本号 mysql_get_server_info

Related labels:
source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template