PHP Change Dash To Space (PCDS)


PCDS:   SOLD       




Currently I have this line in my code:

<div>
<a href="http://www.envisionforce.com/local/'.$row[website].'-seo-services">'.ucwords($row[website]).'</a>
</div>

And it will display the city name like this

Puiol-del-piu

But what I need is to display it without hyphens and for ucwords to capitalize the first letter of each word like this:

Puiol Del Piu

It would be nice if the code could be limited to this one line as I also have a lot more going on with other things on this page.

Solutip

Replace hyphens with spaces

str_replace("-"," ",$row[text])

Replace spaces with hyphens

str_replace(" ","-",$row[text])

Post a Comment

Previous Next

نموذج الاتصال