码迷,mamicode.com
首页 > 其他好文 > 详细

fetch——row

时间:2017-04-12 03:59:27      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:span   sql   cal   encode   color   use   logs   return   []   

<?php
class DBDA
{
public $hostname="localhost";
public $username="root";
public $mima="123";
public $dbname="zhousan";
public function Query($str,$t=0)
        {
            $obj=new MySQLi($this->hostname,$this->username,$this->mima,$this->dbname);
            $fanhui=$obj->query($str);
            if($t==0)
            {
                return $fanhui;
            }
            else
            {        
                while($m=$fanhui->fetch_row())
                {
                    $attr[]=$m;                    
                }
                return json_encode($attr);    
                
            }
        
        }    
        
    
}



?>

DBDB.class.php

 

fetch——row

标签:span   sql   cal   encode   color   use   logs   return   []   

原文地址:http://www.cnblogs.com/ordinaryk/p/6696460.html

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