對於那些熟悉本書的讀者,我正在閱讀本書「Luke Welling Laura Thomson第四版的PHP和MySQL Web開發」第751頁。然而,本書提供的解決方案使用MySQLi DB Connector,它在測試時工作正常。我想通過這個解決方案來使用我的一個使用PHP PDO連接器的項目,但是我試圖得到與課本相同的結果。我正在尋求一些幫助來轉換MySQLi連接器來處理PDO過程。這兩個例子都使用MySQL DB。我不確定我做錯了什麼,並尋求一點幫助。如何將MySQLi連接器轉換爲PHP PDO
我試圖讓我的PDO程序產生相同的結果擴展數組作爲原始文本書陣列做它的工作。
// Example taken from the text book
function expand_all(&$expanded) {
// mark all threads with children as to be shown expanded
$conn = db_connect();
$query = "select postid from header where children = 1";
$result = $conn->query($query);
$num = $result->num_rows;
for($i = 0; $i<$num; $i++) {
$this_row = $result->fetch_row();
$expanded[$this_row[0]]=true;
}
}
// The print_r form the text book example looks like this:
// result:
mysqli_result Object ( [current_field] => 0 [field_count] => 1
[lengths] => [num_rows] => 3 [type] => 0
)
// expended:
Array ([0] => 1) Array ([0] => 2) Array ([0] => 4)
//--------------------------------------------------------------//
// Know, here is my new adopted changes for using PHP PDO connector
function expand_all(&$expanded)
{
// mark all threads with children to be shown as expanded
$table_name = 'header';
$num = 1;
$sql = "SELECT postid FROM $table_name WHERE children = :num";
try
{
$_stmt = $this->_dbConn->prepare($sql);
$_stmt->bindParam(":num", $num, PDO::PARAM_INT);
$_stmt->execute();
$result = $_stmt->fetchAll(PDO::FETCH_ASSOC);
// get the $expanded children id's
foreach ($result as $key => $value)
{
foreach ($value as $k => $val)
{
$expanded[$k] = $val;
}
}
return $extended;
}
catch(PDOException $e)
{
die($this->_errorMessage = $e);
}
//close the database
$this->_dbConn = null;
}
// The print_r for the result looks like this:
Array ([0] => Array ([children_id] => 1)
[1] => Array ([children_id] => 2)
[2] => Array ([children_id] => 4)
)
// The return extended print_r for the children id's
// look like this:
Array ([children_id] => 4);
那麼什麼是你看到的區別? – 2015-02-05 23:11:17