PHP code example of soora-jp / knnc

1. Go to this page and download the library: Download soora-jp/knnc library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

soora-jp / knnc example snippets


SooraJP\KNNC::kan2num('一万二千三百四十五');

SooraJP\KNNC::num2kan(123456789);
// "一億二三四五万六七八九"

SooraJP\KNNC::num2kan(123456789, SooraJP\KNNC\ConvertType::STRICT);
// "一億二千三百四十五万六千七百八十九"

SooraJP\KNNC::num2kan(123456789, SooraJP\KNNC\ConvertType::COMPLEX);
// "壱億弐参四五万六七八九"

SooraJP\KNNC::num2kan(123456789, SooraJP\KNNC\ConvertType::COMPLEX | SooraJP\KNNC\ConvertType::STRICT);
// "壱億弐千参百四拾五萬六千七百八拾九"