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");
}
}
?>
http://www.bkjia.com/PHPjc/371997.htmlwww.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