Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-13 11:32:58
Original
1055 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

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!