我一直在 php 中使用 mysql 抽象类,现在我想通过使用 PDO 使该类更加可用和可靠。在我的课堂上,我使用了 mysql_result() 函数,它接受三个参数:
- result:正在评估的结果资源。此结果来自调用 mysql_query()。
- row:正在检索的结果中的行号。行号从 0 开始。
- field:正在检索的字段的名称或偏移量。
如何使用 PDO 实现类似的输出?
这是使用本机 mysql 函数编写的代码。
public function SQLtoJSON($query, $indented = false)
{
$query = mysql_query($query) or die ('MyJSON - SQLtoJSON - Cannot make query');
if (!$numFields = mysql_num_fields($query)) {
$this->errors[] = 'SQLtoJSON - Cannot get number of MySQL fields';
return false;
}
$fields = array();
for ($i = 0; $i < $numFields; $i++)
$fields[$i] = mysql_field_name($query, $i);
if (!$numRows = mysql_num_rows($query)) {
$this->errors[] = 'SQLtoJSON - Cannot get number of MySQL rows';
return false;
}
$res = array();
for ($i = 0; $i < $numRows; $i++) {
$res[$i] = array();
for ($j = 0; $j < count($fields); $j++)
$res[$i][$fields[$j]] = mysql_result($query, $i, $j);
}
$json = json_encode($res);
if ($indented == false)
return $json;
这是使用 PDO 的代码的更新版本:
class MySql_To_Json
{
private $connection;
public $errors = array();
public function __construct($db_server, $db_username, $db_password, $db_name)
{
$this->connection = new PDO("mysql:host=$db_server;dbname=$db_name", $db_username, $db_password);
}
public function MySQLtoJSON($query)
{
$query = $this->connection->query($query) or die("Unable to execute the query");
if (!$numFields = $query->columnCount()) {
$this->errors[] = "Unable to get the number of fields";
return false;
}
$fields = array();
$colNames = array();
for ($i = 0; $i < $numFields; $i++) {
$fields[$i] = $query->getColumnMeta($i);
foreach ($fields as $field) {
$colNames[] = $field['name'];
}
}
if (!$numRows = $query->rowCount()) {
$this->errors[] = "Unable to get the number of rows";
return false;
}
// return $numRows;
$result = array();
for ($i = 0; $i < $numFields; $i++) {
$result[$i] = array();
for ($j = 0; $j < count($field); $j++) {
return $result[$i][$field[$j]] = $query->fetch($i);
}
}
$json = json_encode($result);
return $json;
}
}