php懒人函数 自动添加数据
程序员文章站
2022-06-06 21:58:26
复制代码 代码如下: /* *@自动添加数据函数 *@$table 表名 *@$arr 字段库 array("title",array("content",int)) *@...
复制代码 代码如下:
/*
*@自动添加数据函数
*@$table 表名
*@$arr 字段库 array("title",array("content",int))
*@ array(字段,类型)
*@ 类型说明
html--允许html
unhtml-不允许html
int --int类型
float -- float 类型
*/
//自动插入数据函数
function autoinsert($table,$arr=array(),$method='post')
{
$sql="insert into ".db_tblpre."$table set ";
$var="";
print_r($arr);
if(empty($arr)) $arr=$_post?$_post:$_get;
if(empty($arr)) return false;
$ct=count($arr)-1;
foreach($arr as $k=> $v)
{
$vtype="unhtml";
if(is_array($v))
{
$vtype=@$v[1];
$v=$v[0];
}
if($method=='post')
{
$_post[$v]=isset($_post[$v])?trim($_post[$v]):"";
if(is_int($_post[$v]))
{
$_post[$v]=intval($_post[$v]);
}elseif(is_float($_post[$v]))
{
$_post[$v]=floatval($_post[$v]);
}elseif(is_string($_post[$v]))
{
//等于1 为保存html 默认不保存html
if($vtype=="unhtml")
{
$_post[$v]=htmlspecialchars($_post[$v]);
}elseif($vtype=="int")
{
$_post[$v]=@intval($_post[$v]);
}elseif($vtype=='float')
{
$_post[$v]=@floatval($_post[$v]);
}
}
$var.= "$v = '$_post[$v]' ".($k<$ct?",":"");
}else
{
$_get[$v]=isset($_get[$v])?trim($_get[$v]):"";
if(is_int($_get[$v]))
{
$_get[$v]=intval($_get[$v]);
}elseif(is_float($_get[$v]))
{
$_get[$v]=floatval($_get[$v]);
}elseif(is_string($_get[$v]))
{
//等于1 为保存html 默认不保存html
if($vtype=='unhtml')
{
$_get[$v]=htmlspecialchars($_get[$v]);
}elseif($vtype=='int')
{
$_get[$v]=intval($_get[$v]);
}elseif($vtype=='float')
{
$_get[$v]=floatval($_get[$v]);
}
}
$var .="$v= '$_get[$v]' ".($k<$ct?",":"");
}
}
$sql.=$var;
$this->query($sql);
return $this->insert_id();
}
/**
@自动更新数据函数
*@$table 表名
*@$arr 字段库 array("title",array("content",int))
*@ array(字段,类型)
*@ 类型说明
html--允许html
unhtml-不允许html
int --int类型
float -- float 类型
** $where 条件数组 类型同 $arr一样
*$method 表单提交的方式
*/
function autoupdate($table,$arr=array(),$where=array(),$method='post')
{
$sql="update ".db_tblpre."$table set ";
$var=$w="";
if(empty($arr)) $arr=$_post?$_post:$_get;
if(empty($arr)) return false;
$ct=count($arr)-1;
foreach($arr as $k=> $v)
{
$vtype="unhtml";
if(is_array($v))
{
$vtype=@$v[1];
$v=$v[0];
}
if($method=='post')
{
$_post[$v]=isset($_post[$v])?trim($_post[$v]):"";
if(is_int($_post[$v]))
{
$_post[$v]=intval($_post[$v]);
}elseif(is_float($_post[$v]))
{
$_post[$v]=floatval($_post[$v]);
}elseif(is_string($_post[$v]))
{
//等于1 为保存html 默认不保存html
if($vtype=="unhtml")
{
$_post[$v]=htmlspecialchars($_post[$v]);
}elseif($vtype=="int")
{
$_post[$v]=@intval($_post[$v]);
}elseif($vtype=='float')
{
$_post[$v]=@floatval($_post[$v]);
}
}
$var.= "$v = '$_post[$v]' ".($k<$ct?",":"");
}else
{
$_get[$v]=isset($_get[$v])?trim($_get[$v]):"";
if(is_int($_get[$v]))
{
$_get[$v]=intval($_get[$v]);
}elseif(is_float($_get[$v]))
{
$_get[$v]=floatval($_get[$v]);
}elseif(is_string($_get[$v]))
{
//等于1 为保存html 默认不保存html
if($vtype=='unhtml')
{
$_get[$v]=htmlspecialchars($_get[$v]);
}elseif($vtype=='int')
{
$_get[$v]=intval($_get[$v]);
}elseif($vtype=='float')
{
$_get[$v]=floatval($_get[$v]);
}
}
$var .="$v= '$_get[$v]' ".($k<$ct?",":"");
}
}
$sql.=$var;
//解析 where
$ct=count($where)-1;
if(!empty($where)) $w=" where ";
foreach($where as $k=> $v)
{
$vtype="unhtml";
if(is_array($v))
{
$vtype=@$v[1];
$v=$v[0];
}
if($method=='post')
{
$_post[$v]=isset($_post[$v])?trim($_post[$v]):"";
if(is_int($_post[$v]))
{
$_post[$v]=intval($_post[$v]);
}elseif(is_float($_post[$v]))
{
$_post[$v]=floatval($_post[$v]);
}elseif(is_string($_post[$v]))
{
//等于1 为保存html 默认不保存html
if($vtype=="unhtml")
{
$_post[$v]=htmlspecialchars($_post[$v]);
}elseif($vtype=="int")
{
$_post[$v]=@intval($_post[$v]);
}elseif($vtype=='float')
{
$_post[$v]=@floatval($_post[$v]);
}
}
$w.= "$v = '$_post[$v]' ".($k<$ct?" and ":"");
}else
{
$_get[$v]=isset($_get[$v])?trim($_get[$v]):"";
if(is_int($_get[$v]))
{
$_get[$v]=intval($_get[$v]);
}elseif(is_float($_get[$v]))
{
$_get[$v]=floatval($_get[$v]);
}elseif(is_string($_get[$v]))
{
//等于1 为保存html 默认不保存html
if($vtype=='unhtml')
{
$_get[$v]=htmlspecialchars($_get[$v]);
}elseif($vtype=='int')
{
$_get[$v]=intval($_get[$v]);
}elseif($vtype=='float')
{
$_get[$v]=floatval($_get[$v]);
}
}
$w .="$v= '$_get[$v]' ".($k<$ct?" and ":"");
}
}
$sql.=$w;
$this->query($sql);
}
上一篇: 如何制作一个容易成功的个性化网站
下一篇: Python简单基础小程序
推荐阅读
-
PHP查询并删除数据库多列重复数据的方法(利用数组函数实现)
-
PHP 使用 Imagick 裁切/生成缩略图/添加水印自动检测和处理 GIF
-
PHP函数分享之curl方式取得数据、模拟登陆、POST数据
-
php 自定义函数实现将数据 以excel 表格形式导出示例
-
php中filter函数验证、过滤用户输入的数据
-
2个自定义的PHP in_array 函数,解决大量数据判断in_array的效率问题
-
用javascript判断输入数据是否货币并自动添加¥符号的代码
-
PHP 下载文件时自动添加bom头的方法实例
-
php数据类型判断函数有哪些
-
获取php页面执行时间,数据库读写次数,函数调用次数等(THINKphp)