3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = "This is\tan example\nstring"; /* Use tab and newline as tokenizing characters as well */ $tok = strtok($string, " \n\t"); while ($tok !== false) { echo "Word=$tok\n"; $tok = strtok(" \n\t"); } ?>

preferences:
41.18 ms | 402 KiB | 5 Q