0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

strtolower() とmb_strtolower()の違い

Posted at

大文字のアルファベットなどを小文字に出来るかどうか

例)


<?php 


$str = "Mary Had A Little Lamb and She LOVED It So";
$str2 = 'MNL';

echo strtolower($str).PHP_EOL;// mary had a little lamb and she loved it so
echo mb_strtolower($str).PHP_EOL;// mary had a little lamb and she loved it so

echo strtolower($str2).PHP_EOL;// MNL
echo mb_strtolower($str2).PHP_EOL; //mnl

strtoupper()とmb_strtoupperも考え方は同じ

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?