How can I replace a certain part of my string with another one?
Input string:
\"Hello, my name is Santa\"
How can I change all
strtr ($str, array ('a' => ''));
Or to answer your question more precisely:
strtr ("Hello, my name is Santa", array ('a' => ''));