zend_validate_postcode 通过国家/地区?
我有一份注册表,其中包含邮政编码和国家/地区下拉列表 给定这两个值,我想通过 zend_validate_postcode 验证邮政编码,
此验证器需要在构造函数中使用 zend_locale 现在我不知道如何仅在给定的国家/地区创建 zend_locale 这意味着我必须从美国用户创建 new Zend_Locale('en_US');或 swiss de_CH 但我只有该语言环境的国家/地区部分,如何获取国家/地区的语言部分?
谢谢
i have a registration form which contains a postalcode and a country drop down
given those two values i want to validate the postcode via zend_validate_postcode
this validator wants a zend_locale in the constructor
now i dont know how to create a zend_locale only ba a given country
which means i would have to create from an US user new Zend_Locale('en_US'); or swiss de_CH
but i only have the country part of this locale, how do i get the language part for a country?
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend_Locale::getLocaleToTerritory($country)
例如,对于美国或国家/地区,返回“en_US”。 de_CH 代表 CH
Zend_Locale::getLocaleToTerritory($country)
e.g returns 'en_US' for country US or. de_CH for CH