duanpei4455 2017-01-25 03:05
浏览 32
已采纳

PHP-计算数据库中表的总年数差异

I would like to calculate the total number of difference in years. The scenario is as follows: I have a table in a database. It contains details of members including their experience in years. I would like to get the total of experience years. For example The total years of experience of members is 90years. So far i have tried and all i get is the experience of just a single member.

public function getMemberCollectiveExperience() {
        global $config;
        $db = new DatabaseController($config['db']['hostname'], $config['db']['username'], $config['db']['password'], $config['db']['database']);
        $sql = "SELECT * FROM tbl_member WHERE status = 1";
        $result = $db->retrieveRecord($sql);
        if ($result->num_rows > 0) {
            while ($row = $result->fetch_array()) {
                #get member years 
                $memberYears = $row['personal_experience'];
                $currentYear = date('Y');
                $firstResult = $currentYear - $memberYears;
                $total = $firstResult;
            }
            $result = array('count' => $total);
        }
        return $result;
    }
  • 写回答

2条回答 默认 最新

  • duandun2136 2017-01-25 03:24
    关注

    You can try this to get the total of all the differences

    public function getMemberCollectiveExperience() {
            global $config;
            $total = 0;
            $db = new DatabaseController($config['db']['hostname'], $config['db']['username'], $config['db']['password'], $config['db']['database']);
            $sql = "SELECT * FROM tbl_member WHERE status = 1";
            $result = $db->retrieveRecord($sql);
            if ($result->num_rows > 0) {
                while ($row = $result->fetch_array()) {
                    #get member years 
                    $memberYears = $row['personal_experience'];
                    $currentYear = date('Y');
                    $firstResult = $currentYear - $memberYears;
                    $total += $firstResult;
                }
                $result = array('count' => $total);
            }
            return $result;
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部