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


PHP Zend_Locale_Format::_getRegexForType方法代码示例

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


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

示例1: isNumber

 /**
  * Checks if the input contains a normalized or localized number
  *
  * @param   string  $input    Localized number string
  * @param   array   $options  Options: locale. See {@link setOptions()} for details.
  * @return  boolean           Returns true if a number was found
  */
 public static function isNumber($input, array $options = array())
 {
     if (!self::_getUniCodeSupport()) {
         trigger_error("Sorry, your PCRE extension does not support UTF8 which is needed for the I18N core", E_USER_NOTICE);
     }
     $options = self::_checkOptions($options) + self::$_options;
     // Get correct signs for this locale
     $symbols = Zend_Locale_Data::getList($options['locale'], 'symbols');
     $regexs = Zend_Locale_Format::_getRegexForType('decimalnumber', $options);
     $regexs = array_merge($regexs, Zend_Locale_Format::_getRegexForType('scientificnumber', $options));
     if (!empty($input) && $input[0] == $symbols['decimal']) {
         $input = 0 . $input;
     }
     foreach ($regexs as $regex) {
         preg_match($regex, $input, $found);
         if (isset($found[0])) {
             return true;
         }
     }
     return false;
 }
开发者ID:JaroslavRamba,项目名称:ex-facebook-bundle,代码行数:28,代码来源:Format.php

示例2: isNumber

 /**
  * Checks if the input contains a normalized or localized number
  *
  * @param   string  $input    Localized number string
  * @param   array   $options  Options: locale. See {@link setOptions()} for details.
  * @return  boolean           Returns true if a number was found
  */
 public static function isNumber($input, array $options = array())
 {
     $options = self::_checkOptions($options) + self::$_options;
     // Get correct signs for this locale
     $symbols = Zend_Locale_Data::getList($options['locale'], 'symbols');
     $regexs = Zend_Locale_Format::_getRegexForType('decimalnumber', $options);
     $regexs = array_merge($regexs, Zend_Locale_Format::_getRegexForType('scientificnumber', $options));
     if (!empty($input) && $input[0] == $symbols['decimal']) {
         $input = 0 . $input;
     }
     foreach ($regexs as $regex) {
         preg_match($regex, $input, $found);
         if (isset($found[0])) {
             return true;
         }
     }
     return false;
 }
开发者ID:sonicmaster,项目名称:RPG,代码行数:25,代码来源:Format.php


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