PHP code example of rpalladino / php-lipsum

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

    

rpalladino / php-lipsum example snippets

 bash
$ composer 
 php
ipsum = new Rpalladino\Lipsum\Lipsum();

// get 1 paragraph of text
$lipsum->getParagraphs(1);

// get 25 words of text beginning with "lorem ipsum"
$lipsum->getWords(25, true);

// get 3 list items
$lipsum->getLists(3);