PHP code example of bluora / php-number-converter

1. Go to this page and download the library: Download bluora/php-number-converter 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/ */

    

bluora / php-number-converter example snippets


use HnhDigital/PhpNumberConverter;

echo (new NumberConverter())->word(1);

use HnhDigital/PhpNumberConverter;

echo (new NumberConverter())->roman(1);

use HnhDigital/PhpNumberConverter;

echo (new NumberConverter())->wordOrdinal(1);

use HnhDigital/PhpNumberConverter;

echo (new NumberConverter())->numberOrdinal(1);