首页 > 开发 > PHP > 正文

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

2024-05-04 21:53:29
字体:
来源:转载
供稿:网友

 <?php

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表