Answers:
$newstr = substr_replace($oldstr, $str_to_insert, $pos, 0);
$str = substr($oldstr, 0, $pos) . $str_to_insert . substr($oldstr, $pos);
我有一个我以前的功能:
function putinplace($string=NULL, $put=NULL, $position=false)
{
$d1=$d2=$i=false;
$d=array(strlen($string), strlen($put));
if($position > $d[0]) $position=$d[0];
for($i=$d[0]; $i >= $position; $i--) $string[$i+$d[1]]=$string[$i];
for($i=0; $i<$d[1]; $i++) $string[$position+$i]=$put[$i];
return $string;
}
// Explanation
$string='My dog dont love postman'; // string
$put="'"; // put ' on position
$position=10; // number of characters (position)
print_r( putinplace($string, $put, $position) ); //RESULT: My dog don't love postman
这是一个功能强大的小型功能,可以完美地执行其工作。
这是我的简单解决方案,也找到了关键字后将文本追加到了下一行。
$oldstring = "This is a test\n#FINDME#\nOther text and data.";
function insert ($string, $keyword, $body) {
return substr_replace($string, PHP_EOL . $body, strpos($string, $keyword) + strlen($keyword), 0);
}
echo insert($oldstring, "#FINDME#", "Insert this awesome string below findme!!!");
输出:
This is a test
#FINDME#
Insert this awesome string below findme!!!
Other text and data.
只是想添加一些内容:我发现tim cooper的答案非常有用,我用它来创建一个接受位置数组并在所有位置上进行插入的方法,因此,这里是:
编辑:看起来我的旧函数假定$insertstr
只有1个字符,并且该数组已排序。这适用于任意字符长度。
function stringInsert($str, $pos, $insertstr) {
if (!is_array($pos)) {
$pos = array($pos);
} else {
asort($pos);
}
$insertionLength = strlen($insertstr);
$offset = 0;
foreach ($pos as $p) {
$str = substr($str, 0, $p + $offset) . $insertstr . substr($str, $p + $offset);
$offset += $insertionLength;
}
return $str;
}
奇怪的答案在这里!您可以轻松地将字符串插入其他字符串 sprintf [链接到文档]。该功能非常强大,并且可以处理多个元素和其他数据类型。
$color = 'green';
sprintf('I like %s apples.', $color);
给你字符串
I like green apples.
'I like apples.'
一个变量。因此,我们必须%s
首先在字符串中插入,这将返回原始问题