本文整理汇总了PHP中_str_ireplace函数的典型用法代码示例。如果您正苦于以下问题:PHP _str_ireplace函数的具体用法?PHP _str_ireplace怎么用?PHP _str_ireplace使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了_str_ireplace函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: str_ireplace
/**
* Returns a string or an array with all occurrences of search in subject (ignoring case).
* replaced with the given replace value.
* @see http://php.net/str_ireplace
*
* @note It's not fast and gets slower if $search and/or $replace are arrays.
* @author Harry Fuecks <hfuecks@gmail.com
*
* @param string|array text to replace
* @param string|array replacement text
* @param string|array subject text
* @param integer number of matched and replaced needles will be returned via this parameter which is passed by reference
* @return string if the input was a string
* @return array if the input was an array
*/
public static function str_ireplace($search, $replace, $str, &$count = NULL)
{
if (!isset(self::$called[__FUNCTION__])) {
require SYSPATH . 'core/utf8/' . __FUNCTION__ . EXT;
// Function has been called
self::$called[__FUNCTION__] = TRUE;
}
return _str_ireplace($search, $replace, $str, $count);
}
示例2: str_ireplace
public static function str_ireplace($search, $replace, $str, &$count = NULL)
{
if (!isset(UTF8::$called[__FUNCTION__])) {
require JsonApiApplication::find_file("utf8", __FUNCTION__);
// Function has been called
UTF8::$called[__FUNCTION__] = TRUE;
}
return _str_ireplace($search, $replace, $str, $count);
}
示例3: str_ireplace
/**
* Returns a string or an array with all occurrences of search in subject (ignoring case).
* replaced with the given replace value.
* @see http://php.net/str_ireplace
*
* @note It's not fast and gets slower if $search and/or $replace are arrays.
* @author Harry Fuecks <hfuecks@gmail.com
*
* @param string|array t'.php' to replace
* @param string|array replacement t'.php'
* @param string|array subject t'.php'
* @param integer number of matched and replaced needles will be returned via this parameter which is passed by reference
* @return string if the input was a string
* @return array if the input was an array
*/
public static function str_ireplace($search, $replace, $str, &$count = NULL)
{
require_once dirname(__FILE__) . '/' . __FUNCTION__ . '.php';
return _str_ireplace($search, $replace, $str, $count);
}
示例4: str_ireplace
/**
* Returns a string or an array with all occurrences of search in subject
* (ignoring case) and replaced with the given replace value
*
* This is a UTF8-aware version of [str_ireplace](http://php.net/str_ireplace).
*
* [!!] Note: This function is very slow compared to the native version.
* Avoid using it when possible.
*
* @todo PHP 5.5 issue
*
* @author Harry Fuecks <hfuecks@gmail.com
*
* @param mixed $search Text to replace
* @param mixed $replace Replacement text
* @param mixed $str Subject text
* @param integer $count Number of matched and replaced needles will be returned via this parameter which is passed by reference [Optional]
*
* @return mixed
*
* @uses Kohana::find_file
*/
public static function str_ireplace($search, $replace, $str, &$count = NULL)
{
UTF8::_load(__FUNCTION__);
return _str_ireplace($search, $replace, $str, $count);
}
示例5: str_ireplace
/**
* Returns a string or an array with all occurrences of search in subject
* (ignoring case) and replaced with the given replace value. This is a
* UTF8-aware version of [str_ireplace](http://php.net/str_ireplace).
*
* [!!] This function is very slow compared to the native version. Avoid
* using it when possible.
*
* @author Harry Fuecks <hfuecks@gmail.com
*
* @param string|array $search text to replace
* @param string|array $replace replacement text
* @param string|array $str subject text
* @param integer $count number of matched and replaced needles will be returned via this parameter which
* is passed by reference
*
* @return string if the input was a string
* @return array if the input was an array
*/
public static function str_ireplace($search, $replace, $str, &$count = null)
{
if (!isset(UTF8::$called[__FUNCTION__])) {
require Kohana::find_file('utf8', __FUNCTION__);
// Function has been called
UTF8::$called[__FUNCTION__] = true;
}
return _str_ireplace($search, $replace, $str, $count);
}
示例6: str_ireplace
/**
* Returns a string or an array with all occurrences of search in subject
* (ignoring case) and replaced with the given replace value. This is a
* UTF8-aware version of [str_ireplace](http://php.net/str_ireplace).
*
* [!!] This function is very slow compared to the native version. Avoid
* using it when possible.
*
* @author Harry Fuecks <hfuecks@gmail.com
* @param string|array $search text to replace
* @param string|array $replace replacement text
* @param string|array $str subject text
* @param integer $count number of matched and replaced needles will be returned via this parameter which is passed by reference
* @return string if the input was a string
* @return array if the input was an array
*/
public static function str_ireplace($search, $replace, $str, &$count = NULL)
{
if (!isset(self::$called[__FUNCTION__])) {
require Kohana::find_file('utf8', __FUNCTION__);
// Function has been called
self::$called[__FUNCTION__] = TRUE;
}
return _str_ireplace($search, $replace, $str, $count);
}