我有一个关于 str_replace 任何数字的小问题......
$jud='Briney Spears 12 2009';
$jud=str_replace(array('2007','2008','2009','2010','2011','2012'),'2013',$jud);
$jud=str_replace(array('0'),'',$jud);
$jud=str_replace(array('1'),'By',$jud);
$jud=str_replace(array('2'),'Gun',$jud);
$jud=str_replace(array('3'),'Fast',$jud);
echo $jud ;
结果是
Briney Spears ByGun GunByFast
有人可以帮忙吗?我正在寻找“ Briney Spears ByGun 2013 ”的结果如何?谢谢