SoFunction
Updated on 2025-04-04

Zend Framework framework db class select queryer join linked list usage example


<?php
//Introduce the Loader class (auto load class)
require_once("Zend/");
//Use Loader class to introduce a Db class
Zend_Loader::loadClass("Zend_Db");
//Introduce Zend_Db's state machine
Zend_Loader::loadClass("Zend_Db_Statement_Pdo");
//Configure database connection information
$Config = array('host' => '127.0.0.1' ,
    'username' => 'root' ,
    'password' => '111' ,
    'dbname' => 'test',
    'profiler' => "true"
    );
//Tell the database and database configuration information that the Zend_Db class operates
$Db = Zend_Db::factory('PDO_Mysql' , $Config);
//Execute the encoding statement
$Db -> query("set names utf8");
//-----------------------------------------------
$Select = $Db ->select();
$Select -> from('sanguo','*');
$Select -> join('dengji','sanguo.s_dengji = dengji.d_id');
$Select -> order('s_dengji asc');
$Reslut = $Db -> fetchAll($Select);
echo "<table border='1' width='600' style='text-align:center'>";
foreach ($Reslut as $key => $value)
{
 echo "<tr>";
 foreach ($value as $key2 => $value2)
 {
  echo "<td>" . $value2 . "</td>";
 }
 echo "</tr>";
}
echo "</table>";
?>