I would like to extract random substrings form a string, how could I do this?
Lets say I have this text
$text = "Some totally random text I have, and I want to work on it! But need
some php skillz...";
and as a result I want an array like this with extracted substrings
$random_string[0] = "random text I have";
$random_string[1] = "I have, and I want to work";
$random_string[2] = "need some php skillz...";