MySQL's REPLACE() Is PHP's STR_REPLACE() - David Walsh - JavaScript, HTML5 Consultant
The PHP function that I use the most could be str_replace(). If you aren't familiar with the function, here's what it does: $string = 'Hello_My_Friend'; $result = str_replace('_', '-', $string); //becomes Hello-My-Friend Over the past months, I've grown t...