strtolower utf8


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function strtolower_utf8($inputString) {
  2. $outputString = utf8_decode($inputString);
  3. $outputString = strtolower($outputString);
  4. $outputString = utf8_encode($outputString);
  5. return $outputString;
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.