运行 ❯
获取
你自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
进入 Spaces
<!DOCTYPE html> <html> <body> <?php $find = array("HELLO","WORLD"); // Case-insensitive $replace = array("B"); $arr = array("Hello","world","!"); print_r(str_ireplace($find,$replace,$arr)); ?> </body> </html>
数组 ( [0] => B [1] => [2] => ! )