解析用PHP操作MySql数据库(DB类)_PHP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:浅析php如何判断来访网页地址
php利用系统函数HTTP_REFERER判断来访的网页地址 如注册用户时必须是来自某网址的 $str=@$_SERVER[’HTTP_REFERER’];//@为除错功能 if(strstr($str,www.code-123.com))// echo来自www.code-123.com; else echo其它网址;

<?php
/*
* mysql数据库 DB类
* @package db
* @author yytcpt(无影)
* @version 2008-03-27
* @copyrigth http://www.d5s.cn/ 
*/
class db {
var connection_id = "";
var pconnect = 0;
var shutdown_queries = array();
var queries = array();
var query_id = "";
var query_count = 0;
var record_row = array();
var failed = 0;
var halt = "";
var query_log = array();
function connect(db_config){
if (this->pconnect){
this->connection_id = mysql_pconnect(db_config["hostname"], db_config["username"], db_config["password"]);
}else{
this->connection_id = mysql_connect(db_config["hostname"], db_config["username"], db_config["password"]);
}
if ( ! this->connection_id ){
this->halt("Can not connect MySQL Server");
}
if ( ! @mysql_select_db(db_config["database"], this->connection_id) ){
this->halt("Can not connect MySQL Database");
}
if (db_config["charset"]) {
@mysql_unbuffered_query("SET NAMES ’".db_config["charset"]."’");
}
return true;
}
//发送SQL 查询,并返回结果集
function query(query_id, query_type=’mysql_query’){
this->query_id = query_type(query_id, this->connection_id);
this->queries[] = query_id;
if (! this->query_id ) {
this->halt("查询失败:\nquery_id");
}
this->query_count++;
this->query_log[] = str;
return this->query_id;
}
//发送SQL 查询,并不获取和缓存结果的行
function query_unbuffered(sql=""){
return this->query(sql, ’mysql_unbuffered_query’);
}
//从结果集中取得一行作为关联数组
function fetch_array(sql = ""){
if (sql == "") sql = this->query_id;
this->record_row = @mysql_fetch_array(sql, MYSQL_ASSOC);
return this->record_row;
}

分享:php教程之语言中switch的用法介绍
?php $czc=reg; switch($czc){ case’reg’://注册 echo注册的代码; break;//如果注释掉此句,将执行下在的代码,否则终止 case’logout’://退出 echo退出的代码; break; default://此代码除了reg,logout外其它的都是执行以下面的代码 include’user/in

共4页上一页1234下一页
来源:模板无忧//所属分类:PHP教程/更新时间:2010-02-25
相关PHP教程