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


PHP Locale::getCountries方法代码示例

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


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

示例1: validate

 /**
  * Checks if the passed value is valid.
  *
  * @param mixed      $value      The value that should be validated
  * @param Constraint $constraint The constraint for the validation
  *
  * @api
  */
 public function validate($value, Constraint $constraint)
 {
     if (null === $value || '' === $value) {
         return;
     }
     if (!is_scalar($value) && !(is_object($value) && method_exists($value, '__toString'))) {
         throw new UnexpectedTypeException($value, 'string');
     }
     $value = (string) $value;
     if (!in_array($value, \Symfony\Component\Locale\Locale::getCountries())) {
         $this->context->addViolation($constraint->message, array('{{ value }}' => $value));
     }
 }
开发者ID:laubosslink,项目名称:lab,代码行数:21,代码来源:CountryValidator.php

示例2: isValid

 public function isValid($value, Constraint $constraint)
 {
     if (null === $value || '' === $value) {
         return true;
     }
     if (!is_scalar($value) && !(is_object($value) && method_exists($value, '__toString()'))) {
         throw new UnexpectedTypeException($value, 'string');
     }
     $value = (string) $value;
     if (!in_array($value, Locale::getCountries())) {
         $this->setMessage($constraint->message, array('{{ value }}' => $value));
         return false;
     }
     return true;
 }
开发者ID:spf13,项目名称:symfony,代码行数:15,代码来源:CountryValidator.php

示例3: testGetCountries

 public function testGetCountries()
 {
     $countries = Locale::getCountries();
     $this->assertTrue(in_array('BR', $countries));
 }
开发者ID:d3ancole1995,项目名称:symfony,代码行数:5,代码来源:LocaleTest.php

示例4: testGetCountriesForSwitzerland

 public function testGetCountriesForSwitzerland()
 {
     $countries = Locale::getCountries();
     $this->assertContains('CH', $countries);
 }
开发者ID:RuntyCybin,项目名称:csymfony,代码行数:5,代码来源:LocaleTest.php

示例5: getCountries

 public function getCountries()
 {
     return json_encode(\Symfony\Component\Locale\Locale::getCountries());
 }
开发者ID:RosterBot,项目名称:StriideFormBundle,代码行数:4,代码来源:FormValidatorTwigExtension.php


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