1 回答
TA贡献1853条经验 获得超6个赞
您可以file_get_contents()先使用获取原始数据,然后将字符串添加到该数据之前:
$existing = file_get_contents('/path/to/file.txt');
$fp = fopen('/path/to/file.txt', 'w');
$myString = 'hello world'. PHP_EOL;
fwrite($fp, $myString. $existing);
fclose($fp);
在这里,我们用 - 打开文件w以完全覆盖,而不是追加。因此,我们需要在fopen(). 然后我们获取现有文件内容并将其连接到您的字符串,并覆盖文件。
编辑:file_put_contents() - 正如 Nigel Ren 所建议的那样
$existing = file_get_contents('/path/to/file.txt');
$myString = 'hello world'. PHP_EOL;
file_put_contents('/path/to/file.txt', $myString. $existing);
编辑:创建单线的功能
function prepend_to_file(string $file, string $data)
{
if (file_exists($file)) {
try {
file_put_contents($file, $data. file_get_contents($file));
return true;
} catch (Exception $e) {
throw new Exception($file. ' couldn\'t be amended, see error: '. $e->getMessage());
}
} else {
throw new Exception($file. ' wasn\'t found. Ensure it exists');
}
}
# then use:
if (prepend_to_file('/path/to/file.txt', 'hello world')) {
echo 'prepended!';
}
- 1 回答
- 0 关注
- 235 浏览
添加回答
举报