Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试替换字符串上的破折号和“.php”扩展名,例如:
原始字符串:
我的真棒link.php
结果字符串:
我的绝妙链接
非常感谢任何帮助!
您可以使用str_replace摆脱“-”和“.php”,然后UCWords从“我的真棒链接”转到“我的真棒链接”。
str_replace
UCWords
完整的解决方案是这样的:
$pageName = ucwords(str_replace(['-','.php'],[' ',''], $getPageName[1]));