Home  >  Article  >  Backend Development  >  How to use PHP to implement a class file that encapsulates a database_PHP Tutorial

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

WBOY
WBOYOriginal
2016-07-20 11:17:19869browse

 

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");
    } 
}
?>

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...
Statement:
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