我正在尝试使用 php odbc_connect 和 odbc_exec 查询访问 MDB 文件。这个想法是返回一个数组,然后我可以将其转换为 json。
我在 Ubuntu 12.10 上通过 apache2 运行 php
这是我的代码:
//Connect to the database
$conn=odbc_connect('stock-test','','');
//die if error
if (!$conn) {
die("Connection Failed: " . $conn);
}
//SQL query
$sql = "SELECT * FROM Stk_Items";
//This is the print command...see notes below for this
//print " "
//Execute SQL query
$rs=odbc_exec($conn,$sql);
//If no result, there is an error in the SQL
if (!$rs) {
exit("Error in SQL");
}
//Create an array to contain the results...
$arr = array();
//Loop through the results, pushing each array to the $arr array
while ($row = odbc_fetch_array($rs)) {
array_push($arr, $row);
}
print json_encode( $arr);
odbc_close($conn);
现在这是奇怪的事情。如果我在发出 odbc_exec 命令之前打印一个空格(或任何其他字符),此代码只会输出 json(我已在上面的代码中注释掉了该命令)
我还运行了其他几个测试(回显结果等),但除非我在 odbc_exec 命令之前打印一些空格,否则没有一个可以工作。
我错过了一些明显的东西吗?