PHP code example of vlaim / slownie

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

    

vlaim / slownie example snippets


Slownie::convert($number, bool $hideGrosze = false, bool $hideZlote = false)

Slownie::convert(10348);
// Output: "dziesięć tysięcy trzysta czterdzieści osiem złotych 00/100"

Slownie::convert(10348, true);
// Output: "dziesięć tysięcy trzysta czterdzieści osiem złotych"

Slownie::convert(10348, true, true);
// Output: "dziesięć tysięcy trzysta czterdzieści osiem"