Mega Code Archive

 
Categories / Php / Strings
 

Str_replace

<?php    $author = "j@rntsoft.com";    $author = str_replace("@","(at)",$author);    echo "Contact the author of this article at $author."; ?>