preg_replace数组的用法
$string = 'The quick brown fox jumped over the lazy dog.';
$patterns = array();
$patterns[2] = '/quick/';
$patterns[1] = '/brown/';
$patterns[0] = '/fox/';
$patterns[4] = '/lazy/';
var_dump($patterns);
$replacements = array();
$replacements[0] = 'lazyo';
$replacements[2] = 'black';
$replacements[1] = 'bear';
$replacements[4] = 'slow';
echo preg_replace($patterns, $replacements, $string);
会输出
array (size=4)
2 =>
string
'/quick/' (length=7) 1 =>
string
'/brown/' (length=7) 0 =>
string
'/fox/' (length=5) 4 =>
string
'/lazy/' (length=6)
The slowo black bear jumped over the slow dog.
所以preg_replace是根据数组的键来遍历替换的。
posted on 2015-07-13 14:37 liuwenbohhh 阅读(676) 评论(0) 编辑 收藏 举报