Use Mysqli's bind_result to get doubts about all result sets.

Source: Internet
Author: User
 if($result instanceof mysqli_stmt)    {        $result->store_result();        $variables = array();        $data = array();        $meta = $result->result_metadata();       // 从这里开始就迷糊        while($field = $meta->fetch_field())            $variables[] = &$data[$field->name]; // pass by reference        call_user_func_array(array($result, 'bind_result'), $variables);        $i=0;        while($result->fetch())        {            $array[$i] = array();            foreach($data as $k=>$v)                $array[$i][$k] = $v;            $i++;        }    }

In the above code, $variables is an empty array indexed to numbers ah, how to bind on the: Better explain why you're writing this? Appreciate.

Reply content:

 if($result instanceof mysqli_stmt)    {        $result->store_result();        $variables = array();        $data = array();        $meta = $result->result_metadata();       // 从这里开始就迷糊        while($field = $meta->fetch_field())            $variables[] = &$data[$field->name]; // pass by reference        call_user_func_array(array($result, 'bind_result'), $variables);        $i=0;        while($result->fetch())        {            $array[$i] = array();            foreach($data as $k=>$v)                $array[$i][$k] = $v;            $i++;        }    }

In the above code, $variables is an empty array indexed to numbers ah, how to bind on the: Better explain why you're writing this? Appreciate.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.