App下载

demo_func_string_str_ireplace3 在线工具

demo_func_string_str_ireplace3 在线工具

<?php
$find = array("HELLO","WORLD"); // Case-insensitive
$replace = array("B");
$arr = array("Hello","world","!");
print_r(str_ireplace($find,$replace,$arr));
?>
运行结果