-
strtolower()関数を使用する方法: strtolower()関数は、指定された文字列をすべて小文字に変換します。以下は使用例です。
$str = "HELLO WORLD"; $lowercaseStr = strtolower($str); echo $lowercaseStr; // 出力結果: hello world
-
CIの文字列ヘルパーを使用する方法: CodeIgniterには、文字列操作に便利なヘルパー関数が用意されています。
string_helper
をロードして以下の関数を使用することができます。$this->load->helper('string'); $str = "HELLO WORLD"; $lowercaseStr = strtolower($str); echo $lowercaseStr; // 出力結果: hello world
または、直接関数を呼び出すこともできます。
$str = "HELLO WORLD"; $lowercaseStr = strtolower($str); echo $lowercaseStr; // 出力結果: hello world