加载 PHP PDO 驱动程序的正确方法?
我想开始使用 PDO 表单数据库工作,但遇到了问题,根本没有加载 PDO 驱动程序。
我将我的 PHP 包解压到“C:\PHP”,然后编辑 apaches httpd.conf 文件来加载 php 模块,如下所示:
LoadModule php5_module "C:\PHP\php5apache2_2.dll"
然后编辑 PHP.ini 文件来加载我的 MySQL PDO 驱动程序模块,取消注释该行:
extension=php_pdo_mysql.dll
现在我然后创建一个调用phpinfo();
函数的页面,当页面渲染时,PDO下的部分是空的,没有加载任何内容。
有人知道配置 apache 和 PHP 以便加载 mysql PDO 驱动程序并可用的正确方法吗?
I would like to start working with PDO form database work and have ran into a problem, no PDO drivers are loaded at all.
I unzip my PHP package into "C:\PHP" and then edit apaches httpd.conf file to load the php module like so:
LoadModule php5_module "C:\PHP\php5apache2_2.dll"
I then edit my PHP.ini file to load my MySQL PDO driver module, uncommenting the line:
extension=php_pdo_mysql.dll
Now i then create a page which calls the phpinfo();
function, when the page is rendered, the section under PDO is empty, nothing has been loaded.
Would anyone know the correct way to configure apache and PHP so that the mysql PDO driver is loaded and useable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在启用 php_pdo_mysql.dll 扩展之前,您应该启用主 PDO 扩展
Before enabling php_pdo_mysql.dll extension you should enable the main PDO Extension