用str_replace轮换数组时有点怪

WBOY
Release: 2016-06-13 12:32:56
Original
1036 people have browsed it

用str_replace替换数组时有点怪

$str = '2abc';<br />
$arr1 = array('0', '1', '2', '3', '4', '5', '6');<br />
$arr2 = array('9', '8', '7', '6', '5', '4', '3');<br />
$str = str_replace($arr1, $arr2, $str);<br />
echo $str;<br />
//输出结果正常:7abc
Copy after login

$str = '2abc';<br />
$arr1 = array('0', '1', '2', '3', '4', '5', '6', '7');<br />
$arr2 = array('9', '8', '7', '6', '5', '4', '3', 'W');<br />
$str = str_replace($arr1, $arr2, $str);<br />
echo $str;<br />
//输出结果有误:Wabc
Copy after login

请问为什么会这样啊?
谢谢!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template