pdo方法中怎么写
如何在 pdo 中重写它:
$con = mysql_connect("localhost:".$LOCAL_DB_PORT, $LOCAL_DB_USER, $LOCAL_DB_PASS);
mysql_select_db("xnews", $con);
mysql_query("set names utf8", $con);
How to rewrite this in pdo:
$con = mysql_connect("localhost:".$LOCAL_DB_PORT, $LOCAL_DB_USER, $LOCAL_DB_PASS);
mysql_select_db("xnews", $con);
mysql_query("set names utf8", $con);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的事情怎么样:
要打开连接,您必须使用其 构造函数 实例化 PDO ,它接收 DSN 作为第一个参数。
然后,要发送查询,您可以使用
PDO::查询
方法。或者,对于 UTF-8 部分,也许您可以使用第四个参数 < code>PDO::__construct,如下所示:
查看 MySQL 驱动,其中有这个:
What about something like this :
To open a connection, you have to instanciate PDO, using its constructor, which receives a DSN as first parameter.
And, then, to send queries, you can use the
PDO::query
method.Or, for the UTF-8 part, maybe you could use the fourth parameter to
PDO::__construct
, like this :See the list of specific stuff for the MySQL Driver, amongst which there is this one :