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


PHP Typecho_Common::strLen方法代码示例

本文整理汇总了PHP中Typecho_Common::strLen方法的典型用法代码示例。如果您正苦于以下问题:PHP Typecho_Common::strLen方法的具体用法?PHP Typecho_Common::strLen怎么用?PHP Typecho_Common::strLen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Typecho_Common的用法示例。


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

示例1: detabLine

 /**
  * Convert tabs to spaces on each line using a 4-space tab stop
  * @param string $string
  *
  * @return string
  */
 protected static function detabLine($string)
 {
     if (strpos($string, "\t") === false) {
         return $string;
     }
     // Split into different parts
     $parts = explode("\t", $string);
     // Add each part to the resulting line
     // The first one is done here; others are prefixed
     // with the necessary spaces inside the loop below
     $line = $parts[0];
     unset($parts[0]);
     foreach ($parts as $part) {
         // Calculate number of spaces; insert them followed by the non-tab contents
         $amount = 4 - Typecho_Common::strLen($line, 'UTF-8') % 4;
         $line .= str_repeat(' ', $amount) . $part;
     }
     return $line;
 }
开发者ID:hongweipeng,项目名称:cool_blog,代码行数:25,代码来源:DocParser.php

示例2: maxLength

 /**
  * Max Length
  *
  * @access public
  * @param string
  * @return boolean
  */
 public function maxLength($str, $length)
 {
     return Typecho_Common::strLen($str) < $length;
 }
开发者ID:raindali,项目名称:express,代码行数:11,代码来源:Validate.php


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