PHPackages                             acidf0x/php-korean-handler - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. acidf0x/php-korean-handler

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

acidf0x/php-korean-handler
==========================

PHP Korean Handler - Hangul Separator

v2.0.0(4y ago)31201MITPHPPHP &gt;=7.4

Since Aug 14Pushed 4y agoCompare

[ Source](https://github.com/0xFoxTail/PHP-Korean-Handler)[ Packagist](https://packagist.org/packages/acidf0x/php-korean-handler)[ RSS](/packages/acidf0x-php-korean-handler/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (1)Versions (4)Used By (0)

PHP-Korean-Handler
==================

[](#php-korean-handler)

한글 자모 분리 라이브러리 (초성, 중성, 종성)

Installation
------------

[](#installation)

install using composer:

```
 composer require acidf0x/php-korean-handler
```

Usage
-----

[](#usage)

조회시 반환 값은 `U+3130`와 `U+318F` 사이의 *Hangul Compatibility Jamo*가 반환 됩니다.

- See [Hangul Compatibility Jamo](https://unicode.org/charts/PDF/U3130.pdf)

```
use AcidF0x\KoreanHandler\Seperator;

$separator = new Seperator();

$result = $separator->separate("수상하게 돈이 많은");
print_r($result->getSplitList()); // ["ㅅ","ㅜ","ㅅ","ㅏ","ㅇ","ㅎ","ㅏ","ㄱ","ㅔ","ㄷ","ㅗ","ㄴ","ㅇ","ㅣ","ㅁ","ㅏ","ㄶ","ㅇ","ㅡ","ㄴ"]
print_r($result->getChoseongList()); // ["ㅅ", "ㅅ", "ㅎ", "ㄱ", "ㄷ", "ㅇ", "ㅁ", "ㅇ"]
print_r($result->getJungseongList()); // ["ㅜ", "ㅏ", "ㅏ", "ㅔ", "ㅗ", "ㅣ", "ㅏ", "ㅡ"]
print_r($result->getJongseongList()); // ["ㅇ","ㄴ","ㄶ","ㄴ"]
```

`separate` 메서드의 리턴 값은 `ArrayAccess`, `Iterator` 인터페이스를 구현하였으므로 각 결과에 대해 `Array`처럼 접근 하여 사용이 가능합니다

```
$result = $this->separator->separate("황소");

$result[0]->getChoseong(); // ㅎ
$result[0]->getJungseong(); // ㅘ
$result[0]->getJongseong(); // ㅇ
$result[1]->getChoseong(); // ㅅ
$result[1]->getJungseong(); // ㅗ
$result[1]->getJongseong(); // null

$result[0]->getSplit(); // ["ㅎ", "ㅘ", "ㅇ"]

foreach ($result as $character) {
    $character->getChoseong();
}
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~629 days

Total

3

Last Release

1570d ago

Major Versions

v1.x-dev → v2.0.02022-01-22

PHP version history (2 changes)v1.0.0PHP &gt;=5.6

v2.0.0PHP &gt;=7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/2e36271e2101817b1eb7f680212a93e21aed375fcad90e995452e3972f6e1e92?d=identicon)[AcidF0x](/maintainers/AcidF0x)

---

Top Contributors

[![0xFoxTail](https://avatars.githubusercontent.com/u/35107271?v=4)](https://github.com/0xFoxTail "0xFoxTail (10 commits)")

---

Tags

hangul-jamokoreanphpphp-korean-handler

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/acidf0x-php-korean-handler/health.svg)

```
[![Health](https://phpackages.com/badges/acidf0x-php-korean-handler/health.svg)](https://phpackages.com/packages/acidf0x-php-korean-handler)
```

###  Alternatives

[lupecode/php-trader-native

An native version of the PHP Trader extension.

106118.3k1](/packages/lupecode-php-trader-native)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
