为了账号安全,请及时绑定邮箱和手机立即绑定

我这样写也可以返回关联数组

<?php
header('content-type:text/html;charset=utf-8');
error_reporting(E_ALL^E_NOTICE);
try {
	$pdo=new PDO('mysql:host=localhost;dbname=imooc', 'root', 'root');
	$sql='SELECT * FROM user';
	$stmt=$pdo->prepare($sql);
	$res=$stmt->execute();
	if($res){
		while($row=$stmt->fetch(MYSQL_ASSOC)){
			print_r($row);
			echo'<br/>';
		}
	}
	
	
}catch (PDOException $e){
	echo $e->getMessage();
}


正在回答

1 回答

恩 可以的 

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我这样写也可以返回关联数组

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信