PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
libraries
/
vendor
/
joomla
/
string
/
src
/
phputf8
<?php /** * @package utf8 */ //--------------------------------------------------------------- /** * UTF-8 aware alternative to stristr * Find first occurrence of a string using case insensitive comparison * Note: requires utf8_strtolower * @param string * @param string * @return int * @see http://www.php.net/strcasecmp * @see utf8_strtolower * @package utf8 */ function utf8_stristr($str, $search) { if ( strlen($search) == 0 ) { return $str; } $lstr = utf8_strtolower($str); $lsearch = utf8_strtolower($search); //JOOMLA SPECIFIC FIX - BEGIN preg_match('/^(.*)'.preg_quote($lsearch, '/').'/Us',$lstr, $matches); //JOOMLA SPECIFIC FIX - END if ( count($matches) == 2 ) { return substr($str, strlen($matches[1])); } return FALSE; }
[+]
..
[-] LICENSE
[edit]
[+]
mbstring
[+]
native
[-] ord.php
[edit]
[-] README
[edit]
[-] strcasecmp.php
[edit]
[-] strcspn.php
[edit]
[-] stristr.php
[edit]
[-] strrev.php
[edit]
[-] strspn.php
[edit]
[-] str_ireplace.php
[edit]
[-] str_pad.php
[edit]
[-] str_split.php
[edit]
[-] substr_replace.php
[edit]
[-] trim.php
[edit]
[-] ucfirst.php
[edit]
[-] ucwords.php
[edit]
[-] utf8.php
[edit]
[+]
utils
[-] .htaccess.disabled
[edit]