当前位置: 首页>>代码示例>>PHP>>正文


PHP _str_ireplace函数代码示例

本文整理汇总了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);
 }
开发者ID:momoim,项目名称:momo-api,代码行数:24,代码来源:utf8.php

示例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);
 }
开发者ID:benshez,项目名称:DreamWeddingCeremonies,代码行数:9,代码来源:UTF8.php

示例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);
 }
开发者ID:abhinay100,项目名称:forma_app,代码行数:20,代码来源:lib.utf8.php

示例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);
 }
开发者ID:ultimateprogramer,项目名称:cms,代码行数:27,代码来源:utf8.php

示例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);
 }
开发者ID:s4urp8n,项目名称:kohana-admin,代码行数:28,代码来源:UTF8.php

示例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);
 }
开发者ID:BenjaminRomeo,项目名称:KohanaTest,代码行数:25,代码来源:UTF8.php


注:本文中的_str_ireplace函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。