preg_replace问题

发布于 2024-11-08 23:37:59 字数 319 浏览 0 评论 0原文

我有 $_SERVER['DOCUMENT_ROOT'] 回显,问题是当它从 xampp 回显时,它显示如下:

C:/xampp/hdocs

当从 PHPed 回显时,它显示

C:\\xampp\\htdocs.

我想替换 "C: \\xampp\\htdocs""C:/xampp/hdocs" 但我无法使用 preg_replace 执行此操作。

请帮助我!

I have $_SERVER['DOCUMENT_ROOT'] echoed, the problem is when it is echoed from xampp it shows, like this:

C:/xampp/hdocs

and when echoed from PHPed it shows

C:\\xampp\\htdocs.

I want to replace "C:\\xampp\\htdocs" with "C:/xampp/hdocs" but I'm not able to do so using preg_replace.

Kindly help me !

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

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

发布评论

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

评论(1

兔小萌 2024-11-15 23:37:59

你不需要正则表达式。使用 str_replace() 函数:

str_replace('\\', '/', $str);

You don't need regex for that. Use the str_replace() fnction:

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