码迷,mamicode.com
首页 > 数据库 > 详细

php中mysqli替换mysql_result的官方方法

时间:2015-05-12 17:11:47      阅读:1003      评论:0      收藏:0      [点我收藏+]

标签:php   mysqli   

今天升级了php版本,顺便想把php代码中的mysql连接方式改成mysqli,因为官方自php5.3开始一直推荐mysqli 和 pdo 。不多说了,贴代码

// here‘s a rough replacement using mysqli:
// 错略的使用mysqli替换
if (!function_exists(‘mysql_result‘)) {
    function mysql_result($result, $number, $field=0) {
        mysqli_data_seek($result, $number);
        $row = mysqli_fetch_array($result);
        return $row[$field];
    }
}

php官方网址:http://php.net/manual/zh/function.mysql-result.php

php中mysqli替换mysql_result的官方方法

标签:php   mysqli   

原文地址:http://blog.csdn.net/gxdvip/article/details/45671567

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!