執行 ❯
獲取您
自己的 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!