文字列内のすべてのアルファベットを小文字、あるいは大文字に変換するには以下のようにします。
$s = 'Hello World'; $lower = strtolower($s); // 'hello world' $upper = strtoupper($s); // 'HELLO WORLD'