作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我搜索了很多,但找不到一种方法来转储表关系,例如一对一、一对多与 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/
我是一名优秀的程序员,十分优秀!