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:
36.6 ms | 402 KiB | 5 Q