有关于如何使用 PDO 的好的教程吗?
也许有人做了一个教程来展示重要的事情:设置一切并将其与 MySQL 一起使用?
Maybe someone did a tutorial that shows the important thing: Setting everything up and using it with MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MySQL.com:通过 PDO 使用 MySQL
PHP.net:PHP 数据对象 (PDO)
MySQL.com: Using MySQL with PDO
PHP.net: PHP Data Objects (PDO)
PHP.net 拥有最好的东西。我会查看此处作为示例。
PHP.net has the best stuff. I would check out here for an example.
我在使用 PDO 和 BLOB 时遇到的问题是,您可以将其用于 MySQL 中的加密数据。使用加密 BLOB 的一个很好的例子(因此数据库本身的信息被加密)可以在以下位置看到:
项目 mySQL PDO:使用 PDO 处理 mySQL 数据库的分步指南,以帮助消除 SQL 注入以及使用加密。
Something I came across with PDO and BLOBs is that you can use that for encrypted data in MySQL. A good example of using BLOBs with encryption (so information in the database itself is encrypted) can be seen in:
Project mySQL PDO: Step by step guide to working with a mySQL database with the PDO to help eliminate SQL injection along with using encryption.
我认为这篇文章 为什么应该使用 PHP 的 PDO 进行数据库访问 很棒。它简单、清晰、有条理。
I think the article Why you Should be using PHP's PDO for Database Access is great. It is simple, clear, and organized.