Skip to content

Instantly share code, notes, and snippets.

@rileypaulsen
Created March 19, 2014 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rileypaulsen/9640351 to your computer and use it in GitHub Desktop.
Save rileypaulsen/9640351 to your computer and use it in GitHub Desktop.
Lorem Ipsum Generator Function
function random_lipsum($amount = 1, $what = 'paras') {
$start = rand(0,30);
return simplexml_load_file("http://www.lipsum.com/feed/xml?amount=$amount&what=$what&start=$start")->lipsum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment