I am working on youtube video feed, and I want to transform each video title to seotitle.
I have a string like so: 'Kings Of Leon - Use Somebody'
and I want it to be like this: 'Kings-Of-Leon-Use-Somebody'
.
I have try this code:
$seotitle=str_replace(' ','-',$video['title']['$t']);
but I get this 'Kings-Of-Leon-Use---Somebody'
What is a good way to handle with extra spaces and minus?