如何在 htaccess 中启用 MySQLi 扩展

发布于 2024-11-03 16:50:21 字数 68 浏览 1 评论 0原文

如何在 htaccess 中启用 PHP 的 MySQLi 扩展?是否可以通过 htaccess 文件启用 PHP 扩展?

How to enable MySQLi extension for PHP in htaccess? Is it even possible to enable PHP extensions through htaccess file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谜兔 2024-11-10 16:50:21

Extension= 指令仅在中央 php.ini 中有效,无法在 .htaccess 文件中设置。

最好的情况是您可以在 PHP 脚本中手动加载它:

<?php
   dl("mysqli.so");

仅适用于 PHP 5.2

The extension= directive is only valid in the central php.ini, it cannot be set from within .htaccess files.

At best you could load it manually in your PHP script:

<?php
   dl("mysqli.so");

Only works until PHP 5.2

无语# 2024-11-10 16:50:21

你不需要。

Mysqli 应该作为 PHP 模块安装并通过 php.ini 加载。

假设如果您使用 debian 相关的 Linux 发行版,则可以通过发出 apt-get install php5-mysqli 来完成。

如果这不是一个选项,请阅读有关此模块的 PHP 文档并按照其中描述的步骤进行操作。

You don't.

Mysqli should be installed as a PHP-module and loaded through php.ini.

Assuming you use a debian-related Linux distribution, this can be done by issuing apt-get install php5-mysqli.

If this is not an option, please read the PHP documentation on this module and follow the steps described there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文