我有三个文件:
index.php
/include/conf.php
/include/database.php
conf.php
包含连接到数据库的变量。
database.php
包含conf.php
并具有将整个表作为数组返回的功能。index.php
包括/include/database.php
和调用get_table('users');
XDebug
说我$db_host, $db_user, $db_pass and $db_name
没有定义。
如何通过外部文件传递数据库相关变量?