public function Random::paragraphs

public Random::paragraphs($paragraph_count = 12)

Generate paragraphs separated by double new line.

Parameters

int $paragraph_count:

Return value

string

File

core/lib/Drupal/Component/Utility/Random.php, line 251

Class

Random
Defines a utility class for creating random data.

Namespace

Drupal\Component\Utility

Code

public function paragraphs($paragraph_count = 12) {
  $output = '';
  for ($i = 1; $i <= $paragraph_count; $i++) {
    $output .= $this->sentences(mt_rand(20, 60)) . "\n\n";
  }
  return $output;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!Utility!Random.php/function/Random::paragraphs/8.1.x