php – 为什么它在下一行的开头添加文本,而不是在右边的那一行添加?
作者:互联网
需要的解决方案:
我正在使用一个简单的PHP脚本,应该:
>在文件的第一行末尾添加“value4 :::”
>在所有下一行的末尾添加“:::”
我是编程的新手,并且在这里坐了两天试图解决这个问题.可能是一个小细节,或者它可能是完全错误的方式来完成这项任务.
这可能是错误的方法,或者可能是正则表达式问题?我真的不知道.
我恳请你帮我解决问题.
信息:
文件newstest.db看起来像这样:
ID:::value1:::value2:::value3:::
1:::My:::first:::line:::
2:::My:::second:::line:::
3:::Your:::third:::line:::
使用这个PHP脚本我想让它看起来像这样:
ID:::value1:::value2:::value3:::value4:::
1:::My:::first:::line::::::
2:::My:::second:::line::::::
3:::Your:::third:::line::::::
问题:
到目前为止,我几乎得到了它,但我很困惑为什么它将“value4 :::”添加到第二行的开头,然后在所有的开头(不是结尾)添加“:::”其余的线条.
所以我得到一个看起来像这样的文件:
ID:::value1:::value2:::value3:::
value4:::1:::My:::first:::line:::
:::2:::My:::second:::line:::
:::3:::Your:::third:::line:::
我以为:
$lineshere = 'Some text here:::';
$lines1 = $linehere.'value4:::';
会输出“Some some here ::: value4 :::”
可能是问题是由于这种方式逐行添加?
$lines = '';
$lines.= 'My test';
$lines.= ' is here';
echo $lines;
我是编程的新手,所以我可能使用完全错误的函数tec来完成这项工作.
但在这种情况下,接缝会在错误的位置添加空格或换行符/换行符.
我尝试这个解决方案:
<?php
// specify the file
$file_source="newstest.db";
// get the content of the file
$newscontent = file($file_source, true);
//set a start value (clear memory)
$lines ='';
// get each line and treat it line by line.
foreach ($newscontent as $line_num => $linehere) {
// add "value4:::" at the end of FIRST line only, and put it in memory $lines
if($line_num==0) {
$lines.= $linehere.'value4:::';
// Just to see what the line looks like
//echo 'First line: '.$lines.'<br /><br />';
}
// then add ":::" to the other lines and add them to memory $lines
if($line_num>0) {
$lines1 = $linehere.':::';
$lines.= $lines1;
//just look at the line
//echo 'Line #'.$line_num.': '.$lines1.'<br /><br />';
}
}
//Write new content to $file_source
$f = fopen($file_source, 'w');
fwrite($f,$lines);
fclose($f);
echo "// to show the results ar array<br /><br />";
$newscontentlook = file($file_source, true);
print_r(array_values($newscontentlook));
?>
解决方法:
这实际上很容易用file_get_contents和preg_replace实现,即:
$content = file_get_contents("newstest.db");
$content = preg_replace('/(^ID:.*\S)/im', '$1value4:::', $content);
$content = preg_replace('/(^\d+.*\S)/im', '$1:::', $content);
file_put_contents("newstest.db", $content);
输出:
ID:::value1:::value2:::value3:::value4:::
1:::My:::first:::line::::::
2:::My:::second:::line::::::
3:::Your:::third:::line::::::
标签:php,regex,flat-file 来源: https://codeday.me/bug/20190829/1758642.html