3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = 'Convert spaces to dash and LowerCase with PHP'; $str_lower = strtolower($str); $separator = '-'; $str_replace = str_replace(' ', $separator, $str_lower); $wordwrap = wordwrap($str_lower, 1, $separator, 0); echo 'Original: ' . "\t" . $str . "\n"; echo 'str_lower: ' . "\t" . $str_lower . "\n"; echo 'str_replace: ' . "\t" . $str_replace . "\n"; echo 'wordwrap: ' . "\t" . $wordwrap . "\n";

preferences:
35.62 ms | 407 KiB | 5 Q