Examples of using the db-type select queryer join linked list in the zf framework (zend Framework) _ php instance

Source: Internet
Author: User
Tags zend framework
This article mainly introduces the examples of using the Db-type select querytojoin linked list in the zf framework. For more information, see the examples of using the join () linked list in the zend Framework.

The code is as follows:


// Introduce the Loader class (automatic loading class)
Require_once ("Zend/Loader. php ");
// Use the Loader class to introduce a Db Class
Zend_Loader: loadClass ("Zend_Db ");
// Introduce the Zend_Db status server
Zend_Loader: loadClass ("Zend_Db_Statement_Pdo ");
// Configure database connection information
$ Config = array ('host' => '2017. 0.0.1 ',
'Username' => 'root ',
'Password' => '123 ',
'Dbname' => 'test ',
'Filer' => "true"
);
// Inform Zend_Db of the database and database configuration information operated by the class
$ 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"











";Foreach ($ Reslut as $ key => $ value){Echo" ";Foreach ($ value as $ key2 => $ value2){Echo" ";}Echo" ";}Echo"
". $ Value2 ."
";
?>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.