Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在重组我们的数据库,我们需要找到在我们的 PHP 脚本中引用的所有表。我正在考虑使用 SQL 解析器,但我需要知道表所在的特定文件。它需要contacts在以下两种情况下都找到表,然后列出脚本位置。
contacts
SELECT * FROM contacts WHERE... SELECT * FROM `contacts` WHERE...
试试 PHPStorm。它有一个称为“数据库工具”的功能。配置完成后,您可以使用“查找用法”功能来跟踪项目中的所有表引用
更多信息在这里