<?php $str = "Make the world a better place"; $parts = explode(' ', $str); ?>
Split the string into an array.
0 Comments