PHP:在共享主机上使用 browscap.ini。 - ini_set() 失败

发布于 2024-08-26 22:56:39 字数 460 浏览 8 评论 0原文

我正在尝试使用 get_browser() ,不幸的是我的页面位于共享主机上,并且我无法访问 php.ini。

我已经下载了最新版本的 browscap.ini 并将其放置在我的文档根目录中。然后我添加了以下内容:-

if (!ini_set('browscap', '/home/私有内容/browscap.ini')) {
echo "设置浏览器失败";
} 否则{
回声“browscap = [”。 ini_get('browscap') 。 “]”;
}
退出();

但这失败了,(注意:失败条件的 echo 语句始终显示 [] - 即使我没有 browscap.ini 文件,该设置仍应显示在 ini_get 中......不是吗?)

我已经查看了之前的问题,但它们似乎没有帮助,有什么想法吗?

I'm trying to use get_browser() , unfortunately my page is on a shared host, and I have no access to php.ini.

I have downloaded the latest version of browscap.ini and placed in my document root. I have then added the following:-

if (!ini_set('browscap', '/home/private stuff/browscap.ini')) {
echo "Failed to set browscap";
} else {
echo "browscap = [" . ini_get('browscap') . "]";
}
exit();

But this fails, (nb: the echo statement for the failed condition always shows [] - even if I didn;t have the browscap.ini file the setting should still show up in the ini_get.... shouldn't it?)

I have looked at the previous questions on this and they don't seem to help, any ideas?

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

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

发布评论

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

评论(2

心房的律动 2024-09-02 22:56:39

根据 PHP 手册,“browscap”仅在系统 php.ini 和/或 httpd.conf。您不能在脚本级别设置它。

As per the PHP manual, 'browscap' is changeable only in the system php.ini and/or httpd.conf. You cannot set it at the script level.

凝望流年 2024-09-02 22:56:39

I hadn't heard of this feature before, but in Googling around I came across phpbrowscap (previously at a this Google Code repo( which is a standalone class that you should be able to use in your hosted environment. The author supports many configuration files and the QuickStart (previously here) looks especially easy.

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