當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Filter::isZip方法代碼示例

本文整理匯總了PHP中Zend_Filter::isZip方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Filter::isZip方法的具體用法?PHP Zend_Filter::isZip怎麽用?PHP Zend_Filter::isZip使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Filter的用法示例。


在下文中一共展示了Zend_Filter::isZip方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _validateLocalSearch

 /**
  * Validate Local Search Options
  *
  * @param array $options
  */
 protected function _validateLocalSearch($options)
 {
     $valid_options = array('appid', 'query', 'results', 'start', 'sort', 'radius', 'street', 'city', 'state', 'zip', 'location', 'latitude', 'longitude');
     if (!is_array($options)) {
         return;
     }
     $this->_compareOptions($options, $valid_options);
     if (isset($options['results'])) {
         if (!Zend_Filter::isBetween($options['results'], 1, 20, true)) {
             throw new Zend_Service_Exception($options['results'] . ' is not valid for the "results" option.');
         }
     }
     if (isset($options['start'])) {
         if (!Zend_Filter::isBetween($options['start'], 1, 1000, true)) {
             throw new Zend_Service_Exception($options['start'] . ' is not valid for the "start" option.');
         }
     }
     if (isset($options['longitude'])) {
         if (!Zend_Filter::isBetween($options['longitude'], -90, 90, true)) {
             throw new Zend_Service_Exception($options['longitude'] . ' is not valid for the "longitude" option.');
         }
     }
     if (isset($options['latitude'])) {
         if (!Zend_Filter::isBetween($options['latitude'], -180, 180, true)) {
             throw new Zend_Service_Exception($options['latitude'] . ' is not valid for the "latitude" option.');
         }
     }
     if (isset($options['zip'])) {
         if (!Zend_Filter::isZip($options['zip'])) {
             throw new Zend_Service_Exception($options['zip'] . ' is not a valid for the "zip" option.');
         }
     }
     $locationFields = array('street', 'city', 'state', 'zip', 'location', 'lon');
     foreach ($locationFields as $field) {
         if (isset($options[$field]) && $options[$field] != '') {
             $locations[] = 1;
         }
     }
     if (!is_array($locations) && $options['latitude'] == '' && $options['longitude'] == '') {
         throw new Zend_Service_Exception('You must enter a locale to search near.');
     }
     if (!in_array($options['sort'], array('relevance', 'title', 'distance', 'rating'))) {
         throw new Zend_Service_Exception('You have entered an invalid sort property.');
     }
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:50,代碼來源:Yahoo.php

示例2: testZip

 /**
  * Returns value if it is a valid US ZIP, FALSE otherwise.
  *
  * @param mixed $key
  * @return mixed
  */
 public function testZip($key)
 {
     if (!$this->keyExists($key)) {
         return false;
     }
     if (Zend_Filter::isZip($this->_source[$key])) {
         return $this->_source[$key];
     }
     return FALSE;
 }
開發者ID:fferriere,項目名稱:web,代碼行數:16,代碼來源:Input.php

示例3: testZip

 /**
  * Returns value if it is a valid US ZIP, FALSE otherwise.
  *
  * @param mixed $key
  * @return mixed
  */
 public function testZip($key)
 {
     if (Zend_Filter::isZip($this->_source[$key])) {
         return $this->_source[$key];
     }
     return FALSE;
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:13,代碼來源:InputFilter.php

示例4: testIsZip

 public function testIsZip()
 {
     $this->assertTrue(Zend_Filter::isZip('90210'), '"90210" is a valid zip code');
     $this->assertFalse(Zend_Filter::isZip('9501'), '"04600" is not a valid zip code');
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:5,代碼來源:FilterTest.php

示例5: isZip

 /**
  * Returns value if it is a valid US ZIP, FALSE otherwise.
  *
  * @param mixed $key
  * @return mixed
  */
 public function isZip($key)
 {
     return Zend_Filter::isZip($this->_source[$key]);
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:10,代碼來源:InputFilter.php

示例6: testZip

 /**
  * Returns value if it is a valid US ZIP, FALSE otherwise.
  *
  * @param mixed $key
  * @return mixed
  */
 public function testZip($key = null)
 {
     if (!($value = $this->keyExists($key))) {
         return false;
     }
     if (Zend_Filter::isZip($value)) {
         return $value;
     }
     return FALSE;
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:16,代碼來源:Input.php


注:本文中的Zend_Filter::isZip方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。