Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
str_replace();我们可以在PHP 编程中使用吗echo ''; ?如果可能的话,请给我看一个例子。
str_replace();
echo '';
echo str_replace('dog', 'cat', 'thats an ugly dog');
输出是“那是一只丑陋的狗”的“那是一只丑陋的猫”;
示例:http ://codepad.org/b63nu4Ie