3

我有一个关于 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 ”​​的结果如何?谢谢

4

4 回答 4

2

Try replacing the year with some placeholder. For example:

$jud = str_replace(array('2007','2008','2009','2010','2011','2012'), '%%YEAR%%', $jud);

Then replace numbers

$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);

And then replace placeholder with the year:

$jud = str_replace('%%YEAR%%', 2013, $jud);
于 2013-03-20T18:33:54.610 回答
2

您可以更改替换顺序(一年后替换)或使用数组方法str_replace()

$sentence    = 'Britney Spears 12 2009';
$toreplace   = array('2009', '2012');
$replacewith = array('2013', '2013');

echo str_replace($toreplace, $replacewith, $sentence); // Britney Spears 12 2013
于 2013-03-20T18:49:42.487 回答
1

只是为了好玩:)

<?php
  $jud = 'Briney Spears 12 2009';
  $rep = array('', 'By', 'Gun', 'Fast');

  echo preg_replace(
    array_merge( array('/20(0[\d]|1[1-2])/'), 
      array_map( function($foo){
        return "/{$foo}(?![\d]{2,})(?!$)/";
      }, array_keys($rep))), 
        array_merge( array('2013'), $rep ), $jud, 1);

例子

于 2013-03-20T19:14:23.187 回答
1

我不知道我是否正确理解了你的问题。但你可以这样做:

$jud='Briney Spears 12 2009';
$jud=str_replace(" 12 ", " ByGun ", $jud);

例如,这将用 ByGun 替换 12,而不用替换 2012。如果您需要所有月份,您可以将“1”到“12”放在一个数组中。保留前后的空间。

$jud=str_replace(array(" 1 "," 2 "," 3 "," 4 "," 5 "," 6 "," 7 "," 8 "," 9 "," 10 "," 11 "," 12 "), " ByGun ", $jud);

然后,像您一样替换年份。

于 2013-03-20T18:29:52.843 回答