<?php
class
Mysql {
private
$server
=
""
;
private
$user
=
""
;
private
$password
=
""
;
private
$database
=
""
;
private
$linkMode
= 1;
private
$link_id
= 0;
private
$query_id
= 0;
private
$query_times
= 0;
private
$result
=
array
();
private
$fetchMode
= MYSQL_ASSOC;
private
$err_no
= 0;
private
$err_msg
;
private
$character
;
public
function
__construct(
$server
,
$user
,
$password
,
$database
,
$character
=
"UTF8"
,
$linkMode
= 0) {
if
(
empty
(
$server
) ||
empty
(
$user
) ||
empty
(
$database
))
$this
->halt (
"提交的数据库信息不完整!请检查服务器地址,用户和数据库是否正确有效"
);
$this
->server =
$server
;
$this
->user =
$user
;
$this
->password =
$password
;
$this
->database =
$database
;
$this
->linkMode =
$linkMode
;
$this
->character =
$character
;
$this
->connect ();
}
public
function
connect(
$server
=
""
,
$user
=
""
,
$password
=
""
,
$database
=
""
) {
$server
=
$server
?
$server
:
$this
->server;
$user
=
$user
?
$user
:
$this
->user;
$password
=
$password
?
$password
:
$this
->password;
$database
=
$database
?
$database
:
$this
->database;
$this
->link_id =
$this
->linkMode ? mysql_pconnect (
$server
,
$user
,
$password
,
$database
) : mysql_connect (
$server
,
$user
,
$password
,
$database
);
if
(!
$this
->link_id) {
$this
->halt (
"数据库连接失败!请检查各项参数!"
);
return
0;
}
if
(! mysql_select_db (
$database
,
$this
->link_id )) {
$this
->halt (
"无法选择数据库"
);
return
0;
}
if
(
$this
->character !=
"GBK"
&&
$this
->character !=
"UTF8"
) {
$this
->halt (
"输入的编码模式不正确!"
);
return
0;
}
$this
->query ( 'SET NAMES ' .
$this
->character );
return
$this
->link_id;
}
public
function
query(
$sql
) {
$this
->query_times ++;
$this
->query_id = mysql_query (
$sql
,
$this
->link_id );
if
(!
$this
->query_id) {
$this
->halt (
"<font color=red>"
.
$sql
.
"</font> 语句执行不成功!"
);
return
0;
}
return
$this
->query_id;
}
public
function
setFetchMode(
$mode
) {
if
(
$mode
== MYSQL_ASSOC ||
$mode
== MYSQL_NUM ||
$mode
== MYSQL_BOTH) {
$this
->fetchMode =
$mode
;
return
1;
}
else
{
$this
->halt (
"错误的模式."
);
return
0;
}
}
public
function
fetchRow() {
$this
->record = mysql_fetch_array (
$this
->query_id,
$this
->fetchMode );
return
$this
->record;
}
public
function
fetchAll() {
$arr
[] =
array
();
while
(
$this
->record = mysql_fetch_array (
$this
->query_id,
$this
->fetchMode ) )
$arr
[] =
$this
->record;
mysql_free_result (
$this
->query_id );
return
$arr
;
}
public
function
getValue(
$filed
) {
return
$this
->record [
$filed
];
}
public
function
getquery_id() {
return
$this
->query_id;
}
public
function
affectedRows() {
return
mysql_affected_rows (
$this
->link_id );
}
public
function
recordCount() {
return
mysql_num_rows (
$this
->query_id );
}
public
function
getquery_times() {
return
$this
->query_times;
}
public
function
getVersion() {
$this
->query (
"select version() as ver"
);
$this
->fetchRow ();
return
$this
->getValue (
"ver"
);
}
public
function
getDBSize(
$database
,
$tblPrefix
= null) {
$sql
=
"SHOW TABLE STATUS FROM "
.
$database
;
if
(
$tblPrefix
!= null) {
$sql
.=
" LIKE '$tblPrefix%'"
;
}
$this
->query (
$sql
);
$size
= 0;
while
(
$this
->fetchRow () )
$size
+=
$this
->getValue (
"Data_length"
) +
$this
->getValue (
"Index_length"
);
return
$size
;
}
public
function
halt(
$err_msg
=
""
) {
if
(
$err_msg
==
""
) {
$this
->errno = mysql_errno ();
$this
->error = mysql_error ();
echo
"<b>mysql error:<b><br>"
;
echo
$this
->errno .
":"
.
$this
->error .
"<br>"
;
exit
();
}
else
{
echo
"<b>mysql error:<b><br>"
;
echo
$err_msg
.
"<br>"
;
exit
();
}
}
public
function
insertID() {
return
mysql_insert_id ();
}
public
function
close() {
$link_id
=
$link_id
?
$link_id
:
$this
->link_id;
mysql_close (
$link_id
);
}
function
sqlSelect(
$tbname
,
$where
=
""
,
$limit
= 0,
$fields
=
"*"
,
$orderby
=
""
,
$sort
=
"DESC"
) {
$sql
=
"SELECT "
.
$fields
.
" FROM "
.
$tbname
. (
$where
?
" WHERE "
.
$where
:
""
) . (
$orderby
?
" ORDER BY "
.
$orderby
.
" "
.
$sort
:
""
) . (
$limit
?
" limit "
.
$limit
:
""
);
return
$sql
;
}
function
sqlInsert(
$tbname
,
$row
) {
foreach
(
$row
as
$key
=>
$value
) {
$sqlfield
.=
$key
.
","
;
$sqlvalue
.=
"'"
.
$value
.
"',"
;
}
return
"INSERT INTO "
.
$tbname
.
"("
.
substr
(
$sqlfield
, 0, - 1 ) .
") VALUES ("
.
substr
(
$sqlvalue
, 0, - 1 ) .
")"
;
}
function
sqlUpdate(
$tbname
,
$row
,
$where
) {
foreach
(
$row
as
$key
=>
$value
) {
$sqlud
.=
$key
.
"= '"
.
$value
.
"',"
;
}
return
"UPDATE "
.
$tbname
.
" SET "
.
substr
(
$sqlud
, 0, - 1 ) .
" WHERE "
.
$where
;
}
function
sqlDelete(
$tbname
,
$where
) {
if
(!
$where
) {
$this
->halt (
"删除函数没有指定条件!"
);
return
0;
}
return
"DELETE FROM "
.
$tbname
.
" WHERE "
.
$where
;
}
function
checkSql(
$db_string
,
$querytype
= 'select') {
$clean
= '';
$old_pos
= 0;
$pos
= - 1;
if
(
$querytype
== 'select') {
$notallow1
=
"[^0-9a-z@\._-]{1,}(union|sleep|benchmark|load_file|outfile)[^0-9a-z@\.-]{1,}"
;
if
(
eregi
(
$notallow1
,
$db_string
)) {
exit
(
"<font size='5' color='red'>Safe Alert: Request Error step 1 !</font>"
);
}
}
while
( true ) {
$pos
=
strpos
(
$db_string
, '\'',
$pos
+ 1 );
if
(
$pos
=== false) {
break
;
}
$clean
.=
substr
(
$db_string
,
$old_pos
,
$pos
-
$old_pos
);
while
( true ) {
$pos1
=
strpos
(
$db_string
, '\'',
$pos
+ 1 );
$pos2
=
strpos
(
$db_string
, '\\',
$pos
+ 1 );
if
(
$pos1
=== false) {
break
;
}
elseif
(
$pos2
== false ||
$pos2
>
$pos1
) {
$pos
=
$pos1
;
break
;
}
$pos
=
$pos2
+ 1;
}
$clean
.= '
$s
$';
$old_pos
=
$pos
+ 1;
}
$clean
.=
substr
(
$db_string
,
$old_pos
);
$clean
= trim (
strtolower
( preg_replace (
array
('~\s+~s' ),
array
(' ' ),
$clean
) ) );
if
(
strpos
(
$clean
, 'union' ) !== false && preg_match ( '~(^|[^a-z])union($|[^[a-z])~s',
$clean
) != 0) {
$fail
= true;
}
elseif
(
strpos
(
$clean
, '/*' ) > 2 ||
strpos
(
$clean
, '--' ) !== false ||
strpos
(
$clean
, '#' ) !== false) {
$fail
= true;
}
elseif
(
strpos
(
$clean
, 'sleep' ) !== false && preg_match ( '~(^|[^a-z])sleep($|[^[a-z])~s',
$clean
) != 0) {
$fail
= true;
}
elseif
(
strpos
(
$clean
, 'benchmark' ) !== false && preg_match ( '~(^|[^a-z])benchmark($|[^[a-z])~s',
$clean
) != 0) {
$fail
= true;
}
elseif
(
strpos
(
$clean
, 'load_file' ) !== false && preg_match ( '~(^|[^a-z])load_file($|[^[a-z])~s',
$clean
) != 0) {
$fail
= true;
}
elseif
(
strpos
(
$clean
, 'into outfile' ) !== false && preg_match ( '~(^|[^a-z])into\s+outfile($|[^[a-z])~s',
$clean
) != 0) {
$fail
= true;
}
elseif
(preg_match ( '~\([^)]*?select~s',
$clean
) != 0) {
$fail
= true;
}
if
(!
empty
(
$fail
)) {
exit
(
"<font size='5' color='red'>Safe Alert: Request Error step 2!</font>"
);
}
else
{
return
$db_string
;
}
}
public
function
__destruct() {
$this
->close ();
}
}
?>