How to use PHP to implement a class file that encapsulates a database_PHP Tutorial

WBOY
Release: 2016-07-20 11:17:19
Original
898 people have browsed it

 

class dbname{
    private $localhost;
    private $root;
    private $pass;
    private $db_name;
public function __construct($localhost,$root,$pass,$db_name){
    $this->localhost=$localhost;
    $this->root=$root;
    $this->pass=$pass;
    $this->db_name=$db_name;
    $this->query();
}
    private function query(){
        mysql_connect($this->localhost,$this->root,$this->pass);
        mysql_select_db($this->db_name);
        mysql_query("set names utf8");
    } 
}
?>
Copy after login

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/371997.htmlTechArticle?php class dbname{ private $localhost; private $root; private $pass; private $db_name;public function __construct($localhost,$root,$pass,$db_name){ $this-localhost=$localhost; $thi...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template