digital-canvas/options
Composer 安装命令:
composer require digital-canvas/options
包简介
Used to create lists of countries and states.
README 文档
README
Used to create lists of countries and US and CA states/provinces.
Installation
composer require digital-canvas/options
Usage
Create an array with state abbreviations as keys and full names as values
// US states only
$states = \DigitalCanvas\Options\States::getPairs(['US']);
// US states and CA provinces
$states = \DigitalCanvas\Options\States::getPairs(['US', 'CA']);
Create an array with abbreviations as keys and full array of state data as values
// US states only
$states = \DigitalCanvas\Options\States::getArray(['US']);
// US states and CA provinces
$states = \DigitalCanvas\Options\States::getArray(['US', 'CA']);
Create a <select> list for state selection
<select name="state">
<?php foreach(\DigitalCanvas\Options\States::getPairs(['US']) as $abbr => $label):?>
<option value="<?php echo htmlspecialchars($abbr);?>"><?php echo htmlspecialchars($label);?></option>
<?php endforeach; ?>
</select>
统计信息
- 总下载量: 869
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-22