Heim >Backend-Entwicklung >PHP-Tutorial >如何使用php实现封装数据库的类文件_PHP教程

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

WBOY
WBOYOriginal
2016-07-20 11:17:19924Durchsuche

 

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...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn