API16:JString/stristr
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
UTF-8 aware alternative to stristr Returns all of haystack from the first occurrence of needle to the end. needle and haystack are examined in a case-insensitive manner Find first occurrence of a string using case insensitive comparison
Syntax
static stristr($str, $search)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | the haystack | |
| $search | the needle |
Returns
string the sub string
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function stristr($str, $search) { jimport('phputf8.stristr'); return utf8_stristr($str, $search); }
[Edit See Also] SeeAlso:JString/stristr
Examples
<CodeExamplesForm />
