Ich bekomme Probleme mit einer einfachen php-Funktion! Was ich tun möchte, ist:
$text = "this is my data content with many words on it";
Ich möchte eine Funktion schreiben, die die variable Zeichenfolge $text als Array wie folgt umwandelt:
$array = array("this is my", "data content with", "many words on", "it");
Mit anderen Worten, jedes Feldstück sollte 3 Wörter enthalten!