Mega Code Archive

 
Categories / Php / Strings
 

Str_replace php

<?php    $author = "jason@example.com";    $author = str_replace("@","(at)",$author);    echo "Contact $author."; ?>