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.
私のフォーラムにはいくつかのフィルターがあります。たとえば、ユーザーが「こんにちは」を投稿すると、フィルターは単語を「ohai!」に変更します。
しかし、ユーザーが Hello を投稿すると、フィルターは単語を「Ohai!」ではなく「ohai!」に変更します。
これが正規表現を使用して修正されることは知っていますが、方法がわかりません。
PHPを使用している場合は、ucfirst();を使用できます。(大文字の最初の文字)
例えば:
$filter= "ohai"; echo ucfirst($filter);