2015-02-05 99 views
1

对于那些熟悉本书的读者,我正在阅读本书“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); 
+0

那么什么是你看到的区别? – 2015-02-05 23:11:17

回答

0

您正在使用PDO::FETCH_ASSOC并且由于每个结果具有相同的列名,所以您将覆盖循环的每次迭代中的值。

如果您希望$ exapnded是一个ID数组,您需要调整您的循环,否则您应该使用PDO::FETCH_COLUMN

随着循环调整:

foreach ($result as $key => $value) 
    { 
     foreach ($value as $k => $val) 
     { 
      $expanded[] = $val; 
     } 
    } 
    return $expanded; 

随着提取模式调整:

$_stmt = $this->_dbConn->prepare($sql); 
    $_stmt->bindParam(":num", $num, PDO::PARAM_INT); 
    $_stmt->execute(); 

    $result = $_stmt->fetchAll(PDO::FETCH_COLUMN, 0); 

    // at this point im not sure whay you are both passing 
    // $expanded by reference and returning it... 
    // if you want to overwrite this array just do $expanded = $result 
    // if you need to add these items TO an existing $expanded you can use 
    // $expanded = array_merge($expanded, $result) 

这两种方法shoudl给你喜欢的数组:

Array(
    0 => 1, 
    1 => 2, 
    2 => 4 
) 
+0

我在这里看到你的观点并且一致,但是这个答案将产生一个单独的数组,其中的文本书籍示例为扩展的子代码生成了4个数组。那么,我怎么能这样做,还是因为他们正在使用for循环? – 2015-02-05 23:48:47