<?php $string = "This is an example string"; $token = strtok($string, " "); while ($token !== false) { echo $token . PHP_EOL; $token = strtok(" "); }
You have javascript disabled. You will not be able to edit any code.