定制 azteck/haiti-localities 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

azteck/haiti-localities

Composer 安装命令:

composer require azteck/haiti-localities

包简介

Liste complète des localités d’Haïti (départements, arrondissements, communes, sections communales)

README 文档

README

Packagist Version License Build Status

Bibliothèque PHP fournissant l’ensemble des départements, arrondissements, communes et sections communales d’Haïti, ainsi que des méthodes pour filtrer et rechercher ces localités.

Table des matières

Installation

composer require azteck/haiti-localities

Utilisation

Initialisation

require 'vendor/autoload.php';

$h = new \Azteck\HaitiLocalities();

Récupérer les données principales

Départements

$departements = $h->getDepartements();
echo $departements;

Exemple de sortie :

[
  {"name":"Artibonite","parent":"HAITI","type":"Departements"},
  {"name":"Centre","parent":"HAITI","type":"Departements"},
  {"name":"Grand'Anse","parent":"HAITI","type":"Departements"},
  {"name":"Nippes","parent":"HAITI","type":"Departements"},
  {"name":"Nord","parent":"HAITI","type":"Departements"},
  {"name":"Nord Est","parent":"HAITI","type":"Departements"},
  {"name":"Nord Ouest","parent":"HAITI","type":"Departements"},
  {"name":"Ouest","parent":"HAITI","type":"Departements"},
  {"name":"Sud","parent":"HAITI","type":"Departements"},
  {"name":"Sud Est","parent":"HAITI","type":"Departements"}
]

Arrondissements

$arrondissements = $h->getArrondissements();
echo $arrondissements;

Exemple de sortie :

[
  {"name":"Dessalines","parent":"Artibonite"},
  {"name":"Gonaïves","parent":"Artibonite"},
  {"name":"Gros Morne","parent":"Artibonite"},
  {"name":"Marmelade","parent":"Artibonite"},
  {"name":"Saint Marc","parent":"Artibonite"}
]

Communes

$communes = $h->getCommunes();
echo $communes;

Exemple de sortie :

[
  {"name":"Dessalines","parent":"Dessalines"},
  {"name":"Desdunes","parent":"Dessalines"},
  {"name":"Grande Saline","parent":"Dessalines"},
  {"name":"Petite Rivière de l'Artibonite","parent":"Dessalines"}
]

Sections Communales

$sections = $h->getSectionCommunales();
echo $sections;

Exemple de sortie :

[
  {"name":"Villard","parent":"Dessalines"},
  {"name":"Fosse Naboth","parent":"Dessalines"},
  {"name":"Ogé","parent":"Dessalines"},
  {"name":"Poste Pierrot","parent":"Dessalines"},
  {"name":"Fiéfè Petit Cahos","parent":"Dessalines"},
  {"name":"ll Croix","parent":"Dessalines"}
]

Méthodes de filtrage

Arrondissements d’un département

echo $h->getArrondissementsByDepartement("Artibonite");

Communes d’un arrondissement

echo $h->getCommuneByArrondissements("Dessalines");

Sections communales d’une commune

echo $h->getSectionCommunaleByCommune("Dessalines");

Recherche

Recherche partielle insensible à la casse :

echo $h->find("rivi");

Exemple de résultats :

[
  {"name":"Rivière de Bayonnais","parent":"Gonaïves","type":"SectionCommunales"},
  {"name":"Rivière Mancelle","parent":"Gros Morne","type":"SectionCommunales"},
  {"name":"Rivière Blanche","parent":"Gros Morne","type":"SectionCommunales"},
  {"name":"Rivière Canot Canot ous","parent":"Saut d'Eau","type":"SectionCommunales"},
  {"name":"Petite Rivière","parent":"Léogâne","type":"SectionCommunales"},
  {"name":"Grande Rivière Joly","parent":"Anse à Veau","type":"SectionCommunales"}
]

Exemple complet

<?php
require "vendor/autoload.php";

$h = new \Azteck\HaitiLocalities();

$d = $h->getDepartements();
$a = $h->getArrondissements();
$c = $h->getCommunes();
$s = $h->getSectionCommunales();

print $d;
print PHP_EOL.PHP_EOL.PHP_EOL.PHP_EOL;

foreach (json_decode($d) as $item) {
    print $h->getArrondissementsByDepartement($item->name);
    break;
}

print PHP_EOL.PHP_EOL.PHP_EOL.PHP_EOL;

foreach (json_decode($a) as $item) {
    print $h->getCommuneByArrondissements($item->name);
    break;
}

print PHP_EOL.PHP_EOL.PHP_EOL.PHP_EOL;

foreach (json_decode($c) as $item) {
    print $h->getSectionCommunaleByCommune($item->name);
    break;
}

print PHP_EOL.PHP_EOL.PHP_EOL.PHP_EOL;

print $h->find("rivi");
print PHP_EOL.PHP_EOL.PHP_EOL.PHP_EOL;
?>

Tests

Les tests PHPUnit sont inclus dans /tests :

composer test

Contributing

  1. Forkez le projet
  2. Créez votre branche (git checkout -b feature/ma-nouvelle-fonction)
  3. Committez vos modifications (git commit -am 'Ajout d’une fonctionnalité')
  4. Poussez votre branche (git push origin feature/ma-nouvelle-fonction)
  5. Ouvrez une Pull Request

Merci de suivre les bonnes pratiques de code PHP et PSR-12.

Changelog

1.0.0

  • Première version stable
  • Méthodes pour récupérer départements, arrondissements, communes et sections communales
  • Méthodes de filtrage et recherche
  • Tests unitaires PHPUnit inclus

License

MIT License. Voir le fichier LICENSE.

azteck/haiti-localities 适用场景与选型建议

azteck/haiti-localities 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 11 月 21 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 azteck/haiti-localities 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 azteck/haiti-localities 我们能提供哪些服务?
定制开发 / 二次开发

基于 azteck/haiti-localities 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 16
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 25
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-11-21