Hello让我假装我有以下字符串:Line Line Line Line Line
。我想将其更改为Line 1 Line 2 Line 3 Line 4 Line 5
。我怎样才能做到这一点?我尝试使用str_replace但是将它们全部替换为第1行。我该如何修复它?
答案 0 :(得分:0)
您应首先使用explode()
并循环播放作品。
<?php
$string = "Line Line Line Line Line";
$pieces = explode(" ", $string);
foreach ($pieces as $key => $value) {
echo $value.' '.++$key.' ';
}
?>