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」拡張子を置き換えようとしています。次に例を示します。
元の文字列:
my-awesome-link.php
結果の文字列:
私の素晴らしいリンク
どんな助けでも大歓迎です!
str_replace「-」と「.php」の両方を削除してから、「myawesomelink」から「MyAwesomeLink」に移動するために使用できますUCWords。
str_replace
UCWords
完全な解決策は次のとおりです。
$pageName = ucwords(str_replace(['-','.php'],[' ',''], $getPageName[1]));