为了账号安全,请及时绑定邮箱和手机立即绑定

PHP对Mysql操作的自定义函数

标签:
PHP

 <?php

 

/**

*@name db_connect 连接数据库服务器

*

*@param string $host         主机地址

*@param string $user         用户名

*@param string $pwd      用户密码

*@param string $name         数据库名

*@param string $charset  字符集

*

*@return mixed 数据库连接

*/

 

function db_connect($host,$user,$pwd,$name,$charset)

{

    $link = mysqli_connect($host,$user,$pwd);

    if (!$link) {

        return false;

    }

  

    if (!mysqli_select_db($link,$name)) {

        return false;

    }

    mysqli_set_charset($link,$charset);

     

 

    return $link;

}

 

  

/**

*@name db_insert 向数据库插入数据

*

*@param string $link         连接地址

*@param string $table    表

*@param string $data     插入的数据

*

*@return mixed true或者false

*/

 

  

function db_insert($link,$table,$data)

{

    $keys = join(',', array_keys($data));

    $values = implode(',', parse_value(array_values($data)));

     

    $sql = "insert into $table($keys) values($values)";

//echo $sql;die;

    $result = mysqli_query($link, $sql);

    if ($result && mysqli_affected_rows($link)) {

        //返回本次插入的id(该表有自增的id字段)

        return mysqli_insert_id($link);

    }  

    return false;

}

 

 

/**

*@name db_delete 删除数据库的数据

*

*@param string $link         连接地址

*@param string $table    表

*@param string $where  条件

*

*@return mixed      true或者false

*/

function db_delete($link,$table,$where)

{

    $sql = "delete from $table where $where";

     

    $result = mysqli_query($link,$sql);

    if ($result && mysqli_affected_rows($link)) {

        return true;

    }

    return false;

}

 

/**

*@name db_delete 更新数据库的数据

*

*@param string $link         连接地址

*@param string $table    表

*@param string $set          设置信息

*@param string $where  条件

*

*@return mixed      true或者false

*/

function db_update($link,$table,$set,$where)

{

    if (is_array($set)) {

        $set = join(',', parse_set($set));

    }

    $sql = "update $table set $set where $where";

     

    $result = mysqli_query($link, $sql);

    if ($result && mysqli_affected_rows($link)) {

        return true;

    }

    return false;

}

 

/**

*@name db_delete          删除数据库的数据

*

*@param string $link         连接地址

*@param string $table    表

*@param string $where  条件

*@param string $fields       查询字段

*@param string $where  条件

*@param string $orderby    排序

*

*@return mixed      返回数据

*/

 

function db_select($link,$table,$fields, $where=null, $orderby=null)

{

    if (is_array($fields)) {

        $fields = implode(',',$fields);

    }

    $sql = "select $fields from $table";

     

    if ($where) {

        $sql .= " where $where";

    }

     

    if ($orderby) {

        $sql .= " order by $orderby";

    }

     

    $result = mysqli_query($link,$sql);

     

    if ($result && mysqli_affected_rows($link)) {

        while ($row = mysqli_fetch_assoc($result)) {

            $data[] = $row;

        }

        return $data;

    } 

    return false;

}

 

 

 

//辅助函数1:对字符类型进行处理

 

 

 

function parse_value($data)

{

    if (is_string($data)) {

        $data = '\'' . $data . '\'';

    } else if (is_array($data)) {

        $data = array_map('parse_value', $data);

    } else if (is_null($data)) {

        $data = 'null';

    }

    return $data;

}

 

 

//辅助函数2:对数组进行遍历

 

function parse_set($set)

{

    foreach ($set as $key => $value) {

        $data[] = $key . '=' . parse_value($value);

    }

     

    return $data;

}

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消