回答:
$newstr = substr_replace($oldstr, $str_to_insert, $pos, 0);
$str = substr($oldstr, 0, $pos) . $str_to_insert . substr($oldstr, $pos);
putinplace関数ではなくstringInsert関数を使用します。後者の関数を使用してmysqlクエリを解析していました。出力は問題ないように見えましたが、クエリによりエラーが発生し、追跡に時間がかかりました。以下は、パラメーターが1つだけ必要な私のバージョンのstringInsert関数です。
function stringInsert($str,$insertstr,$pos)
{
$str = substr($str, 0, $pos) . $insertstr . substr($str, $pos);
return $str;
}
そのための古い関数が1つあります。
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;
}
シンプルで解決する別の方法:
function stringInsert($str,$insertstr,$pos)
{
$count_str=strlen($str);
for($i=0;$i<$pos;$i++)
{
$new_str .= $str[$i];
}
$new_str .="$insertstr";
for($i=$pos;$i<$count_str;$i++)
{
$new_str .= $str[$i];
}
return $new_str;
}