PHP code example of lorem / ipsum

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

    

lorem / ipsum example snippets




mIpsum = new \Lorem\Ipsum\Generator();
$loremIpsum->addParagraph(2)
    ->addParagraph(8)
    ->wrapAll('article', array('class'=>'lorem-ipsum'))
    ->wrapParagraph(1, 'h1')
    ->wrapParagraph(2, 'p', array('class'=>'lorem-ipsum'))
    ->wrapWord(2, 6, 'span')
    ->wrapWords(2, 1, 3, 'a', array('href'=>'https://packagist.org/packages/lorem/ipsum'));
echo $loremIpsum;



 MyLoremIpsum extends \Lorem\Ipsum\Generator
{
    protected $default = 'My text';
}

$loremIpsum = new MyLoremIpsum();