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