Home  >  Article  >  php教程  >  如何使用php实现封装数据库的类文件

如何使用php实现封装数据库的类文件

WBOY
WBOYOriginal
2016-06-13 11:32:581085browse

 

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

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