我正在使用这个 PDO 包装类:http ://www.imavex.com/php-pdo-wrapper-class/#select现在只是无法回显一个对象。
这是方法声明:
<?php
//select Method Declaration
public function select($table, $where="", $bind="", $fields="*") { }
?>
我的查询是这样打印结果数组的:
<?php
$title = 'title_'.$GLOBALS['SelectedLang'];
$results = $GLOBALS['db']->select("news", $title != '', "", $title);
print_r($results);
?>
但是如何回显查询的一个表字段?在老式的mysql中,我会这样做:
<?php
$row = @mysql_query($results);
echo $row->$title;
?>
print_r 的输出是: Array ( [0] => Array ( [title_en] => englisch ) )