gpt4 book ai didi

php - 如何在 PHP 中转储 mysql 表关系

转载 作者:行者123 更新时间:2023-11-29 09:21:31 24 4
gpt4 key购买 nike

我搜索了很多,但找不到一种方法来转储表关系,例如一对一、一对多与 PHP 中的关系。

有没有办法在 PHP 中处理这个问题?

结果可能是:

array(
'tableA' => array(
'one-to-one' => array('tableB', 'tableC'),
'one-to-many' => array('tableD'),

'tableB' => array(
'one-to-one' => array('tableA')


...
)

非常感谢任何建议。

最佳答案

我在 http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html 找到了一个脚本它描述了使用正则表达式解析表信息。我已经操纵了代码来工作。这是代码。

<?php
$conn = mysql_connect('localhost', 'user', 'pass');
if (!$conn) {
die('Could not connect: ' . mysql_error());
}

//DB connection already established
mysql_query("use db");
$res = mysql_query("SHOW CREATE TABLE tbl");
$row = mysql_fetch_assoc($res);
mysql_free_result($res);

//Only work on InnoDB foreign key info.
if(preg_match_all(
'/FOREIGN KEY \(`(.*)`\) REFERENCES `(.*)` \(`(.*)`\)/',
$row['Create Table'],
$matchArr)) {
print_r($matchArr); //which writes down the result

}


?>

关于php - 如何在 PHP 中转储 mysql 表关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1604163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com