PHP str_replace() 函數(shù)
PHP str_replace() 函數(shù)
實(shí)例
把字符串 "Hello world!" 中的字符 "world" 替換成 "Peter":
<?php
echo str_replace("world","Peter","Hello world!");
?>
echo str_replace("world","Peter","Hello world!");
?>
運(yùn)行實(shí)例 ?
定義和用法
str_replace() 函數(shù)替換字符串中的一些字符(區(qū)分大小寫)。
該函數(shù)必須遵循下列規(guī)則:
- 如果搜索的字符串是一個(gè)數(shù)組,那么它將返回一個(gè)數(shù)組。
- 如果搜索的字符串是一個(gè)數(shù)組,那么它將對(duì)數(shù)組中的每個(gè)元素進(jìn)行查找和替換。
- 如果同時(shí)需要對(duì)某個(gè)數(shù)組進(jìn)行查找和替換,并且需要執(zhí)行替換的元素少于查找到的元素的數(shù)量,那么多余的元素將用空字符串進(jìn)行替換。
- 如果是對(duì)一個(gè)數(shù)組進(jìn)行查找,但只對(duì)一個(gè)字符串進(jìn)行替換,那么替代字符串將對(duì)所有查找到的值起作用。
注釋:該函數(shù)是區(qū)分大小寫的。請(qǐng)使用 str_ireplace() 函數(shù)執(zhí)行不區(qū)分大小寫的搜索。
注釋:該函數(shù)是二進(jìn)制安全的。
語法
str_replace(find,replace,string,count)
參數(shù) | 描述 |
---|---|
find | 必需。規(guī)定要查找的值。 |
replace | 必需。規(guī)定替換 find 中的值的值。 |
string | 必需。規(guī)定被搜索的字符串。 |
count | 可選。一個(gè)變量,對(duì)替換數(shù)進(jìn)行計(jì)數(shù)。 |
技術(shù)細(xì)節(jié)
返回值: | 返回帶有替換值的字符串或數(shù)組。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 5.0 中,新增了 count 參數(shù)。 在 PHP 4.3.3 之前,該函數(shù)的 find 和 replace 參數(shù)都為數(shù)組時(shí)將會(huì)遇到麻煩,會(huì)引起空的 find 索引在內(nèi)部指針沒有更換到 replace 數(shù)組上時(shí)被忽略。新的版本不會(huì)有這個(gè)問題。 自 PHP 4.0.5 起,大多數(shù)參數(shù)可以是一個(gè)數(shù)組。 |
更多實(shí)例
實(shí)例 1
使用帶有數(shù)組和 count 變量的 str_replace() 函數(shù):
<?php
$arr = array("blue","red","green","yellow");
print_r(str_replace("red","pink",$arr,$i));
echo "Replacements: $i";
?>
$arr = array("blue","red","green","yellow");
print_r(str_replace("red","pink",$arr,$i));
echo "Replacements: $i";
?>
運(yùn)行實(shí)例 ?
實(shí)例 2
使用帶有需要替換的元素少于查找到的元素的 str_replace() 函數(shù):
<?php
$find = array("Hello","world");
$replace = array("B");
$arr = array("Hello","world","!");
print_r(str_replace($find,$replace,$arr));
?>
$find = array("Hello","world");
$replace = array("B");
$arr = array("Hello","world","!");
print_r(str_replace($find,$replace,$arr));
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 字符串
- PHP 面向?qū)ο?/a>
- PHP $_POST 變量
- PHP 文件上傳
- PHP 高級(jí)過濾器
- PHP array_change_key_case() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)