transform text to lowercase and replace space with dash php code example
Example: transform text to lowercase and replace space with dash php
$str = 'hello have a good day everyone';
echo str_replace(' ', '-', strtolower($str));
$str = 'hello have a good day everyone';
echo str_replace(' ', '-', strtolower($str));