mysql i_mysqli的使用

数据库连接

**/

$conn=mysqli_connect('localhost:3306','root','root');if(!$conn){die("could not connect:".mysqli_error($conn));

}mysqli_query($conn , "set names utf8");$sec=mysqli_select_db($conn,'wc');if(!$sec){die("error".mysqli_error($conn));

}$sql="select * from ss";$retval=mysqli_query($conn,$sql);if(!$retval){die("无法读取数据:".mysqli_error($conn));

}print_r($retval);while($row=mysqli_fetch_array($retval,MYSQLI_ASSOC)){echo '
';print_r($row);$arr[]=$row;

}var_dump($arr);mysqli_free_result($retval);mysqli_close($conn);/*3中解析方法

mysqli_fetch_array($retval)查询结果

Array ( [0] => 1 [id] => 1 [1] => 12 [a] => 12 [2] => 34 [b] => 34 [3] => 11 [c] => 11 )

Array ( [0] => 2 [id] => 2 [1] => 65 [a] => 65 [2] => 42 [b] => 42 [3] => 16 [c] => 16 )

Array ( [0] => 3 [id] => 3 [1] => 91 [a] => 91 [2] => 95 [b] => 95 [3] => 93 [c] => 93 )

mysqli_fetch_array($retval,MYSQLI_ASSOC)

Array ( [id] => 1 [a] => 12 [b] => 34 [c] => 11 )

Array ( [id] => 2 [a] => 65 [b] => 42 [c] => 16 )

Array ( [id] => 3 [a] => 91 [b] => 95 [c] => 93 )

mysqli_fetch_assoc($retval)查询结果

Array ( [id] => 1 [a] => 12 [b] => 34 [c] => 11 )

Array ( [id] => 2 [a] => 65 [b] => 42 [c] => 16 )

Array ( [id] => 3 [a] => 91 [b] => 95 [c] => 93 )

//mysqli_fetch_row($retval)

Array ( [0] => 1 [1] => 12 [2] => 34 [3] => 11 )

Array ( [0] => 2 [1] => 65 [2] => 42 [3] => 16 )

Array ( [0] => 3 [1] => 91 [2] => 95 [3] => 93 )

//mysqli_fetch_field($retval)

stdClass Object ( [name] => id [orgname] => id [table] => ss [orgtable] => ss [def] => [db] => wc [catalog] => def [max_length] => 1 [length] => 11 [charsetnr] => 63 [flags] => 49667 [type] => 3 [decimals] => 0 )

stdClass Object ( [name] => a [orgname] => a [table] => ss [orgtable] => ss [def] => [db] => wc [catalog] => def [max_length] => 2 [length] => 11 [charsetnr] => 63 [flags] => 32768 [type] => 3 [decimals] => 0 )

stdClass Object ( [name] => b [orgname] => b [table] => ss [orgtable] => ss [def] => [db] => wc [catalog] => def [max_length] => 2 [length] => 11 [charsetnr] => 63 [flags] => 32768 [type] => 3 [decimals] => 0 )

stdClass Object ( [name] => c [orgname] => c [table] => ss [orgtable] => ss [def] => [db] => wc [catalog] => def [max_length] => 2 [length] => 11 [charsetnr] => 63 [flags] => 32768 [type] => 3 [decimals] => 0 )*/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值