运行 ❯
获取你的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <p>Search the string "Hello World!", find the value "world" and replace it with "Peter":</p> <?php echo str_replace("world","Peter","Hello world!"); ?> </body> </html>
在字符串 "Hello World!" 中搜索 "world" 并将其替换为 "Peter"
Hello Peter!