我似乎无法弄清楚这一点。我写了一个 PHP 脚本,我不断得到一个数组到字符串的转换......在尝试执行 postgres 查询时注意一个错误:
$tables = array(array('a','table1'),array('c','table2'));
$table = $tables[0][1];
$query = "SELECT * FROM " . $table . " WHERE id = :id LIMIT 1";
$select = $dbconn->prepare($query);
$id = $_GET['id'];
if($select->execute()){
}else{
echo $select->errorInfo();
}
我正在使用 PostgreSQL 版本 9.2.1 和最新的 PHP