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


PHP utf8_strcspn函数代码示例

本文整理汇总了PHP中utf8_strcspn函数的典型用法代码示例。如果您正苦于以下问题:PHP utf8_strcspn函数的具体用法?PHP utf8_strcspn怎么用?PHP utf8_strcspn使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了utf8_strcspn函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: strcspn

 /**
  * UTF-8 aware alternative to strcspn
  * Find length of initial segment not matching mask
  *
  * @param   string   $str     The string to process
  * @param   string   $mask    The mask
  * @param   integer  $start   Optional starting character position (in characters)
  * @param   integer  $length  Optional length
  *
  * @return  integer  The length of the initial segment of str1 which does not contain any of the characters in str2
  *
  * @see     http://www.php.net/strcspn
  * @since   11.1
  */
 public static function strcspn($str, $mask, $start = null, $length = null)
 {
     jimport('phputf8.strcspn');
     if ($start === false && $length === false) {
         return utf8_strcspn($str, $mask);
     } elseif ($length === false) {
         return utf8_strcspn($str, $mask, $start);
     } else {
         return utf8_strcspn($str, $mask, $start, $length);
     }
 }
开发者ID:nogsus,项目名称:joomla-platform,代码行数:25,代码来源:string.php

示例2: strcspn

 /**
  * UTF-8 aware alternative to strcspn
  * Find length of initial segment not matching mask
  *
  * @static
  * @access public
  * @param string
  * @param string the mask
  * @param int Optional starting character position (in characters)
  * @param int Optional length
  * @return int the length of the initial segment of str1 which does not contain any of the characters in str2
  * @see http://www.php.net/strcspn
  */
 public static function strcspn($str, $mask, $start = NULL, $length = NULL)
 {
     jimport('phputf8.strcspn');
     if ($start === FALSE && $length === FALSE) {
         return utf8_strcspn($str, $mask);
     } else {
         if ($length === FALSE) {
             return utf8_strcspn($str, $mask, $start);
         } else {
             return utf8_strcspn($str, $mask, $start, $length);
         }
     }
 }
开发者ID:joebushi,项目名称:joomla,代码行数:26,代码来源:string.php

示例3: strcspn

 /**
  * UTF-8 aware alternative to strcspn
  * Find length of initial segment not matching mask
  *
  * @param   string   $str     The string to process
  * @param   string   $mask    The mask
  * @param   integer  $start   Optional starting character position (in characters)
  * @param   integer  $length  Optional length
  *
  * @return  integer  The length of the initial segment of str1 which does not contain any of the characters in str2
  *
  * @see     http://www.php.net/strcspn
  * @since   2.0
  */
 public static function strcspn($str, $mask, $start = null, $length = null)
 {
     if (!function_exists('utf8_strcspn')) {
         require_once __DIR__ . '/phputf8/strcspn.php';
     }
     if ($start === null && $length === null) {
         return utf8_strcspn($str, $mask);
     }
     if ($length === null) {
         return utf8_strcspn($str, $mask, $start);
     }
     return utf8_strcspn($str, $mask, $start, $length);
 }
开发者ID:lyrasoft,项目名称:lyrasoft.github.io,代码行数:27,代码来源:Utf8String.php

示例4: testLinefeedMask

 function testLinefeedMask()
 {
     $str = "i\nñtërnâtiônàlizætiøn";
     $this->assertEqual(utf8_strcspn($str, "\n"), 1);
 }
开发者ID:kidwellj,项目名称:scuttle,代码行数:5,代码来源:utf8_strcspn.test.php

示例5: strcspn

 /**
  * UTF-8 aware alternative to strcspn
  * Find length of initial segment not matching mask
  *
  * @param   string   $str     The string to process
  * @param   string   $mask    The mask
  * @param   integer  $start   Optional starting character position (in characters)
  * @param   integer  $length  Optional length
  *
  * @return  integer  The length of the initial segment of str1 which does not contain any of the characters in str2
  *
  * @see     http://www.php.net/strcspn
  * @since   1.0
  */
 public static function strcspn($str, $mask, $start = null, $length = null)
 {
     require_once __DIR__ . '/phputf8/strcspn.php';
     if ($start === false && $length === false) {
         return utf8_strcspn($str, $mask);
     }
     if ($length === false) {
         return utf8_strcspn($str, $mask, $start);
     }
     return utf8_strcspn($str, $mask, $start, $length);
 }
开发者ID:jasonrgd,项目名称:Digital-Publishing-Platform-Joomla,代码行数:25,代码来源:String.php

示例6: strcspn

 /**
  * UTF-8 aware alternative to strcspn()
  *
  * Find length of initial segment not matching mask.
  *
  * @param   string   $str     The string to process
  * @param   string   $mask    The mask
  * @param   integer  $start   Optional starting character position (in characters)
  * @param   integer  $length  Optional length
  *
  * @return  integer  The length of the initial segment of str1 which does not contain any of the characters in str2
  *
  * @see     http://www.php.net/strcspn
  * @since   1.3.0
  */
 public static function strcspn($str, $mask, $start = null, $length = null)
 {
     if ($start === false && $length === false) {
         return utf8_strcspn($str, $mask);
     }
     if ($length === false) {
         return utf8_strcspn($str, $mask, $start);
     }
     return utf8_strcspn($str, $mask, $start, $length);
 }
开发者ID:lyrasoft,项目名称:lyrasoft.github.io,代码行数:25,代码来源:StringHelper.php


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