uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
4690b
/
..
/
home_
/
modules
/
..
/
libraries
/
phputf8
/
stristr.php
/
/
<?php /** * @version $Id: stristr.php 10381 2008-06-01 03:35:53Z pasamio $ * @package utf8 * @subpackage strings */ //--------------------------------------------------------------- /** * 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 * @subpackage strings */ function utf8_stristr($str, $search) { if ( strlen($search) == 0 ) { return $str; } $lstr = utf8_strtolower($str); $lsearch = utf8_strtolower($search); preg_match('|^(.*)'.preg_quote($lsearch).'|Us',$lstr, $matches); if ( count($matches) == 2 ) { return substr($str, strlen($matches[1])); } return FALSE; }
/home/poliximo/public_html/4690b/../home_/modules/../libraries/phputf8/stristr.php