如何在 PHP 中正确拆分 PATH 变量?

发布于 2024-07-30 06:12:15 字数 99 浏览 3 评论 0原文

我想分成

$path = getenv('PATH');

它的组成部分。 如何以依赖于操作系统的方式确定分隔符?

I want to split

$path = getenv('PATH');

into its components. How do I determine the separator char in an os-dependent fashion?

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

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

发布评论

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

评论(4

窝囊感情。 2024-08-06 06:12:15

我知道这适用于 include_path - 不确定 getenv('PATH'):

$paths = split(PATH_SEPARATOR, getenv('PATH'));

I know this works for the include_path - not sure about getenv('PATH'):

$paths = split(PATH_SEPARATOR, getenv('PATH'));
镜花水月 2024-08-06 06:12:15

使用PATH_SEPARATOR常量。

Use the PATH_SEPARATOR constant.

一笔一画续写前缘 2024-08-06 06:12:15

如果需要,您可以使用 PATH_SEPARATOR 常量,然后使用 DIRECTORY_SEPARATOR 常量来分割路径。
请参阅目录预定义常量

You can use the PATH_SEPARATOR constant, then the DIRECTORY_SEPARATOR constant to split the path if needed.
See Directory Predefined Constants

_蜘蛛 2024-08-06 06:12:15

我似乎记得 Windows 会接受正斜杠和反斜杠作为文件分隔符,所以你可能不必担心它。

I seem to remember that Windows will accept both forward- and back-slashes as a file-separator, so you may not have to worry about it.

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