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 _strrev($str)
13 if (utf8
::is_ascii($str))
16 preg_match_all('/./us', $str, $matches);
17 return implode('', array_reverse($matches[0]));