PHP Explode
$myString = "I am a long and redundant sentence that serves no purpose except to be an example.";
print_r(explode(" ",$myString));
PHP Implode
$myString = "I am a long and redundant sentence that serves no purpose except to be an example.";
$newArray = explode(" ",$myString);
echo implode(" ",$newArray);
No comments:
Post a Comment