@ 2016-08-03T10:03:22Z <?php
$str = 'Convert spaces to dash and LowerCase with PHP';
$separator = '-';
$str_replace = str_replace(' ', $separator, strtolower($str));
$wordwrap = wordwrap(strtolower($str), 1, $separator, 0);
echo 'Original: ' . "\t" . $str . "\n";
echo 'str_replace: ' . "\t" . $str_replace . "\n";
echo 'wordwrap: ' . "\t" . $wordwrap . "\n";
Enable javascript to submit You have javascript disabled. You will not be able to edit any code.
Output for 5.6.0 - 5.6.40 , 7.0.0 - 7.0.33 , 7.1.0 - 7.1.33 , 7.2.0 - 7.2.34 , 7.3.0 - 7.3.33 , 7.4.0 - 7.4.33 , 8.0.0 - 8.0.30 , 8.1.0 - 8.1.30 , 8.2.0 - 8.2.25 , 8.3.0 - 8.3.13 Original: Convert spaces to dash and LowerCase with PHP
str_replace: convert-spaces-to-dash-and-lowercase-with-php
wordwrap: convert-spaces-to-dash-and-lowercase-with-php
preferences:dark mode live preview
75.51 ms | 408 KiB | 5 Q