Changeset 1382
- Timestamp:
- 12/02/2007 02:25:53 PM (12 months ago)
- Location:
- trunk/system/core/utf8
- Files:
-
- 24 modified
-
from_unicode.php (modified) (1 diff)
-
ltrim.php (modified) (1 diff)
-
ord.php (modified) (1 diff)
-
rtrim.php (modified) (1 diff)
-
str_ireplace.php (modified) (1 diff)
-
str_pad.php (modified) (1 diff)
-
str_split.php (modified) (1 diff)
-
strcasecmp.php (modified) (1 diff)
-
strcspn.php (modified) (1 diff)
-
stristr.php (modified) (1 diff)
-
strlen.php (modified) (1 diff)
-
strpos.php (modified) (1 diff)
-
strrev.php (modified) (1 diff)
-
strrpos.php (modified) (1 diff)
-
strspn.php (modified) (1 diff)
-
strtolower.php (modified) (1 diff)
-
strtoupper.php (modified) (1 diff)
-
substr.php (modified) (1 diff)
-
substr_replace.php (modified) (1 diff)
-
to_unicode.php (modified) (1 diff)
-
transliterate_to_ascii.php (modified) (1 diff)
-
trim.php (modified) (1 diff)
-
ucfirst.php (modified) (1 diff)
-
ucwords.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/utf8/from_unicode.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: from_unicode 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::from_unicode 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _from_unicode($arr) 13 12 { -
trunk/system/core/utf8/ltrim.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: ltrim 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::ltrim 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _ltrim($str, $charlist = NULL) 13 12 { -
trunk/system/core/utf8/ord.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: ord 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::ord 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _ord($chr) 13 12 { -
trunk/system/core/utf8/rtrim.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: rtrim 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::rtrim 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _rtrim($str, $charlist = NULL) 13 12 { -
trunk/system/core/utf8/str_ireplace.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: str_ireplace 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::str_ireplace 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _str_ireplace($search, $replace, $str, & $count = NULL) 13 12 { -
trunk/system/core/utf8/str_pad.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: str_pad 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::str_pad 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _str_pad($str, $final_str_length, $pad_str = ' ', $pad_type = STR_PAD_RIGHT) 13 12 { -
trunk/system/core/utf8/str_split.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: str_split 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::str_split 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _str_split($str, $split_length = 1) 13 12 { -
trunk/system/core/utf8/strcasecmp.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strcasecmp 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strcasecmp 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strcasecmp($str1, $str2) 13 12 { -
trunk/system/core/utf8/strcspn.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strcspn 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strcspn 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strcspn($str, $mask, $offset = NULL, $length = NULL) 13 12 { -
trunk/system/core/utf8/stristr.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: stristr 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::stristr 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _stristr($str, $search) 13 12 { -
trunk/system/core/utf8/strlen.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strlen 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strlen 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strlen($str) 13 12 { -
trunk/system/core/utf8/strpos.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strpos 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strpos 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strpos($str, $search, $offset = 0) 13 12 { -
trunk/system/core/utf8/strrev.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strrev 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strrev 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strrev($str) 13 12 { -
trunk/system/core/utf8/strrpos.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strrpos 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strrpos 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strrpos($str, $search, $offset = 0) 13 12 { -
trunk/system/core/utf8/strspn.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strspn 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strspn 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strspn($str, $mask, $offset = NULL, $length = NULL) 13 12 { -
trunk/system/core/utf8/strtolower.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strtolower 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strtolower 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strtolower($str) 13 12 { -
trunk/system/core/utf8/strtoupper.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: strtoupper 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::strtoupper 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _strtoupper($str) 13 12 { -
trunk/system/core/utf8/substr.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: substr 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::substr 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _substr($str, $offset, $length = NULL) 13 12 { -
trunk/system/core/utf8/substr_replace.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: substr_replace 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::substr_replace 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _substr_replace($str, $replacement, $offset, $length = NULL) 13 12 { -
trunk/system/core/utf8/to_unicode.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: to_unicode 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::to_unicode 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _to_unicode($str) 13 12 { -
trunk/system/core/utf8/transliterate_to_ascii.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: transliterate_to_ascii 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::transliterate_to_ascii 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _transliterate_to_ascii($str, $case = 0) 13 12 { -
trunk/system/core/utf8/trim.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: trim 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::trim 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _trim($str, $charlist = NULL) 13 12 { -
trunk/system/core/utf8/ucfirst.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: ucfirst 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::ucfirst 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _ucfirst($str) 13 12 { -
trunk/system/core/utf8/ucwords.php
r1297 r1382 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * File: ucwords 4 * Kohana utf8 file, loaded by <utf8.php>. 3 * utf8::ucwords 5 4 * 6 * Kohana Source Code: 7 * author - Kohana Team 8 * copyright - (c) 2007 Kohana Team 9 * license - <http://kohanaphp.com/license.html> 5 * @package Core 6 * @author Kohana Team 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 10 10 */ 11 12 11 function _ucwords($str) 13 12 {
