gpt4 book ai didi

php - 在 php 中使用 str_replace() 将反斜杠替换为正斜杠

转载 作者:IT王子 更新时间:2023-10-29 00:59:45 24 4
gpt4 key购买 nike

我有以下网址:

$str = "http://www.domain.com/data/images\flags/en.gif";

我正在使用 str_replace 尝试用正斜杠替换反斜杠:

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

好像不行,结果是这样的:

http://www.domain.com/data/images\flags/en.gif

最佳答案

你必须放置双反斜杠

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

关于php - 在 php 中使用 str_replace() 将反斜杠替换为正斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6806597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com