gpt4 book ai didi

php - 从变量中去掉 "-"

转载 作者:行者123 更新时间:2023-12-02 11:17:13 25 4
gpt4 key购买 nike

我有一个具有以下结构的变量:

$catname = 'this-is-my-category';

如何去掉“-”并得到:

$catname = 'this is my category';

最佳答案

使用str_replace功能如下:

$catname = str_replace('-', ' ', $catname);

这会将字符串中出现的所有 - 替换为

关于php - 从变量中去掉 "-",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5422732/

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