1 <?php
defined('SYSPATH') OR die('No direct access allowed.');
7 * @copyright (c) 2007 Kohana Team
8 * @copyright (c) 2005 Harry Fuecks
9 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
11 function _ucfirst($str)
13 if (utf8
::is_ascii($str))
16 preg_match('/^(.?)(.*)$/us', $str, $matches);
17 return utf8
::strtoupper($matches[1]).$matches[2];