The Easiest Way to Save and Share Code Snippets on the web

UTF8 string to lowercase

php | by: quenerapu

last edit: Feb, 14th 2009 | jump to bottom

<?php
function utfLwCase($s)
	{
	$s=utf8_decode($s);
	$s=strtolower($s);
	$s=utf8_encode($s);
	return $s;
	}
?>
107 views