PHP code example of hrbmt / numeral

1. Go to this page and download the library: Download hrbmt/numeral 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/ */

    

hrbmt / numeral example snippets




use Hrbmt\Numeral\Numeral;

// Create the Numeral instance.
$formatter = new Numeral;

// solution 1
$formatter->setNumber(1000)->format('0,0');

// OR

// solution 2
Numeral::setNumber(1000)->format('0,0');