gpt4 book ai didi

php - 带有正斜杠的 ltrim() 的奇怪行为

转载 作者:行者123 更新时间:2023-12-02 21:00:30 25 4
gpt4 key购买 nike

我需要删除 URL 的开头部分:

$test = "price/edit.php";
echo ltrim($test,'price/');

显示dit.php

如果你想摆弄的话,这里有一个键盘:https://codepad.remoteinterview.io/DominantCalmingBerlinPrice

有什么想法吗?当然,我希望它能够回显edit.php

最佳答案

ltrim 删除找到的所有字符,请考虑以下事项:

$test = 'price/edit.php';
echo ltrim($test, 'dprice/'); // outputs t.php

对于这个特定场景,您可能应该使用 str_replace

关于php - 带有正斜杠的 ltrim() 的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38508511/

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