用随机值替换空格

时间:2013-01-18 11:03:47

标签: php javascript

我有一个段落..我希望空格被替换为一些randam值。 例如

$ string =“Kapa dim nen ma sibilol sebire rola lunie.Ifosamac rapieco他oku,vimeror eralerie puredus elacecos tusorop gobas oliw gepalar。”

和 $ result =“Kapa [rand2] dim [mailingid] nen [rand2] ma [rand1] sibilol [rand1] [mailingid] sebire [rand1] rola [rand2] lunie.Ifosamac [mailingid] rapieco [rand1]他[rand1] [ mailingid]奥,[RAND 1] vimeror [mailingid] eralerie [mailingid] puredus [hashx] elacecos [RAND 1] tusorop [RAND 1] [mailingid] gobas [RAND 1] oliw [mailingid] gepalar“。

其中Randam值为“[mailingid],[rand1],[rand2],[hashx]”

请给我php代码....

1 个答案:

答案 0 :(得分:1)

您可以使用rand()

功能
$str = str_replace(' ', rand(0, 10000), $str);

或者您的意思是列表中的随机值?在这种情况下:

$list = array("value1", "value2");
$str = str_replace(' ', array_rand($list, 1), $str);