PHP eAccelerator include_path 问题

发布于 2024-10-08 15:37:43 字数 197 浏览 2 评论 0原文

好吧,我有一个奇怪的问题,

我一直在 eaccelerator 之前使用 set_include_path ,一切都很好,但现在我无法让它工作,它没有设置我的路径,有时在设置新路径之前使用 get_include_path 附加旧路径get_include_path 返回二进制字符串而不是字符串。

有什么想法吗?

干杯, /马尔辛

OK guys, I have a weird problem,

I have been using set_include_path before eaccelerator and all workded great but now I can't get it to working, its not setting my path and also sometimes when use get_include_path to append old one before setting new one get_include_path return binary string rather than string.

Any ideas?

cheers,
/Marcin

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

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

发布评论

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

评论(1

2024-10-15 15:37:43

试试这个:

set_include_path(implode(PATH_SEPARATOR, array(
    realpath('/../your_path1'),
    realpath('/../your_path2'),
    get_include_path(),
)));

Try this:

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