Changeset 2171 for trunk/system/core/utf8/strpos.php
- Timestamp:
- 02/26/2008 05:42:45 AM (9 months ago)
- Files:
-
- 1 modified
-
trunk/system/core/utf8/strpos.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/utf8/strpos.php
r1382 r2171 22 22 { 23 23 $array = explode($search, $str, 2); 24 return (isset($array[1])) ? utf8::strlen($array[0]) : FALSE;24 return isset($array[1]) ? utf8::strlen($array[0]) : FALSE; 25 25 } 26 26
