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

链接数据库在5.3版本以后的都改了,5.3版本以后的怎么链接

rt链接数据库在5.3版本以后的都改了,5.3版本以后的怎么链接数据库

正在回答

1 回答

可以使用mysqlnd和mysql mysqli pdo_mysql

使用PDO连接mysql的格式:
  $pdo = new PDO('mysql:host=localhost;dbname=database_name;port=3306','用户名','密码');
$pdo->exec('set names utf8');

$stmt = $pdo->prepare("select * from table where id =:id");
$stmt->bindValue(':id',1,PDO::PARAM_INT);
$stmt->execute();
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);

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

Aforeb 提问者

谢谢啦,不过能不能加些注释呀
2016-05-01 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

链接数据库在5.3版本以后的都改了,5.3版本以后的怎么链接

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