要在PHP中获取MySQL表结构,您可以使用以下代码:
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDB";
// 创建连接
$conn = new mysqli($servername, $username, $password, $dbname);
// 检测连接
if ($conn->connect_error) {
die("连接失败: " . $conn->connect_error);
}
// 查询所有表名
$tables = array();
$result = $conn->query("SHOW TABLES");
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$tables[] = $row["Tables_in_" . $dbname];
}
}
// 查询每个表的结构
foreach ($tables as $table) {
echo "表名:" . $table . "\n";
$result = $conn->query("DESCRIBE " . $table);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "字段名:" . $row["Field"] . ",类型:" . $row["Type"] . ",键:" . $row["Key"] . "\n";
}
}
echo "\n";
}
$conn->close();
?>
这段代码将连接到MySQL数据库,查询所有表名,并逐个查询每个表的结构。它将输出每个表的名称和字段名、类型和键。
如果您想要获取特定表的结构,可以将上述代码中的$tables
数组设置为您想要查询的表名,例如:
$tables = array("table1", "table2", "table3");
这将只查询名为table1
、table2
和table3
的表的结构。
领取专属 10元无门槛券
手把手带您无忧上云