php数据处理公共类
풀어 주다: 2016-07-25 08:45:37
- /*==================================================================*/
- /* 文件名:BaseLogic.class.php */
- /* 概要: 数据处理公共类. */
-
- class BaseLogic extends MyDB {
- protected $tabName; //表的名称
- protected $fieldList; //字段集合
- protected $messList;
-
- //==========================================
- // 函数: add($postList)
- // 功能: 添加
- // 参数: $postList 提交的变量列表
- // 返回: 刚插入的自增ID
- //==========================================
- function add($postList) {
- $fieldList='';
- $value='';
- foreach ($postList as $k=>$v) {
- if(in_array($k, $this->fieldList)){
- $fieldList.=$k.",";
- if (!get_magic_quotes_gpc())
- $value .= "'".addslashes($v)."',";
- else
- $value .= "'".$v."',";
- }
- }
-
- $fieldList=rtrim($fieldList, ",");
- $value=rtrim($value, ",");
-
- $sql = "INSERT INTO {$this->tabName} (".$fieldList.") VALUES(".$value.")";
- echo $sql;
- $result=$this->mysqli->query($sql);
- if($result && $this->mysqli->affected_rows >0 )
- return $this->mysqli->insert_id;
- else
- return false;
- }
-
-
- //==========================================
- // 函数: mod($postList)
- // 功能: 修改表数据
- // 参数: $postList 提交的变量列表
- //==========================================
- function mod($postList) {
- $id=$postList["id"];
- unset($postList["id"]);
- $value='';
- foreach ($postList as $k=>$v) {
- if(in_array($k, $this->fieldList)){
- if (!get_magic_quotes_gpc())
- $value .= $k." = '".addslashes($v)."',";
- else
- $value .= $k." = '".$v."',";
- }
- }
- $value=rtrim($value, ",");
- $sql = "UPDATE {$this->tabName} SET {$value} WHERE id={$id}";
- return $this->mysqli->query($sql);
- }
-
- //==========================================
- // 函数: del($id)
- // 功能: 删除
- // 参数: $id 编号或ID列表数组
- // 返回: 0 失败 成功为删除的记录数
- //==========================================
- function del($id) {
- if(is_array($id))
- $tmp = "IN (" . join(",", $id) . ")";
- else
- $tmp = "= $id";
-
- $sql = "DELETE FROM {$this->tabName} WHERE id " . $tmp ;
- return $this->mysqli->query($sql);
-
- }
-
-
- function get($id) {
- $sql = "SELECT * FROM {$this->tabName} WHERE id ={$id}";
-
- $result=$this->mysqli->query($sql);
-
- if($result && $result->num_rows ==1){
- return $result->fetch_assoc();
- }else{
- return false;
- }
-
- }
- function getMessList(){
- $message="";
- if(!empty($this->messList)){
- foreach($this->messList as $value){
- $message.=$value."
";
- }
- }
- return $message;
- }
- }
- ?>
复制代码
|
php
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31