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


PHP aTools::strtolower方法代码示例

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


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

示例1: doClean

 /**
  * @see sfValidatorBase
  */
 protected function doClean($value)
 {
     $clean = (string) parent::doClean($value);
     $clean = aTools::strtolower($clean);
     $slugified = aTools::slugify($clean, $this->getOption('allow_slashes'));
     if ($this->getOption('strict')) {
         if ($slugified !== $clean) {
             throw new sfValidatorError($this, 'invalid', array('value' => $value));
         }
     } else {
         $clean = $slugified;
     }
     return $clean;
 }
开发者ID:quafzi,项目名称:timpany-prototype,代码行数:17,代码来源:aValidatorSlug.class.php

示例2: slugify

 public static function slugify($path, $allowSlashes = false)
 {
     // This is the inverse of the method above
     if (function_exists('mb_strtolower')) {
         // UTF-8 capable replacement for \W. Works fine for English and also for Greek, etc.
         $alnum = '\\p{L}\\p{N}_';
         $modifier = 'u';
     } else {
         $alnum = '\\w';
         $modifier = '';
     }
     if ($allowSlashes) {
         $alnum .= '\\/';
     }
     $regexp = "/[^{$alnum}\\-]+/{$modifier}";
     $path = aTools::strtolower(preg_replace("/[^{$alnum}\\-]+/{$modifier}", '-', $path));
     if ($allowSlashes) {
         // No multiple consecutive /
         $path = preg_replace("/\\/+/{$modifier}", "/", $path);
         // No trailing /
         $path = preg_replace("/\\/\$/{$modifier}", '', $path);
     }
     // No consecutive dashes
     $path = preg_replace("/-+/{$modifier}", '-', $path);
     // Leading and trailing dashes are silly. This has the effect of trim()
     // among other sensible things
     $path = preg_replace("/^-*(.*?)-*\$/{$modifier}", '$1', $path);
     return $path;
 }
开发者ID:quafzi,项目名称:timpany-prototype,代码行数:29,代码来源:BaseaTools.class.php


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