问答详情
源自:2-6 [PDO] prepare()和execute()方法执行查询语句

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

<?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();
}


提问者:Danmomo 2015-07-24 23:14

个回答

  • 有你的世界
    2015-12-28 22:13:51

    恩 可以的