Skip to content

The Jieba Chinese Word Segmentation Implemented in Rust Bound for PHP.

License

Notifications You must be signed in to change notification settings

phper-framework/jieba-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jieba-php

Jieba 中文分词在 Rust 中实现,并为 PHP 提供绑定。

The Jieba Chinese Word Segmentation Implemented in Rust Bound for PHP.

Requirements

  • rust
  • php-dev

Build

# Optional, specify if php isn't installed globally.
#
# export PHP_CONFIG=<Your path of php-config>

# Build libjieba.so.
cargo build --release

Run

php -d "extension=target/release/libjieba.so" --ri jieba

php -d "extension=target/release/libjieba.so" -r "print_r((new Jieba())->cut('我们中出了一个叛徒'));"

API

class Jieba {
    public function __construct();

    public function cut(string $sentence, bool $hmm): array;

    public function cutForSearch(string $sentence, bool $hmm): array;

    public function cutAll(string $sentence): array;
}

Examples

<?php

$jieba = new Jieba();

$words = $jieba->cut("我们中出了一个叛徒", true);
print_r($words);

$words = $jieba->cutAll("我们中出了一个叛徒");
print_r($words);

$words = $jieba->cutForSearch("我们中出了一个叛徒");
print_r($words);

License

MulanPSL-2.0

About

The Jieba Chinese Word Segmentation Implemented in Rust Bound for PHP.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages