Tag Archives: explode

PHP Tutorial : Explode function to split words

Have you faced with a situation where you needed to split some words ? For that exists explode() php function. Look how it works : <?php $words = “some words needed to split”; $wordsarray = explode(” “, $words); print_r($wordsarray); ?>

Posted in Basic PHP | Tagged , , , , , | Leave a comment