Home > Backend Development > PHP Tutorial > PHP更换文件中某段字符的问题

PHP更换文件中某段字符的问题

WBOY
Release: 2016-06-06 20:50:25
Original
941 people have browsed it

说一说问题需求:一个文件2M,可以想象成txt,需要在前1000字符中更改一段20字符长度的字符,位置确定,那个位置的字符不一定。

能不能读出前1000字节,替换,然后从文件头开始写进去,覆盖之前的那1000字节?或者有没有其他的解决方案。

回复内容:

说一说问题需求:一个文件2M,可以想象成txt,需要在前1000字符中更改一段20字符长度的字符,位置确定,那个位置的字符不一定。

能不能读出前1000字节,替换,然后从文件头开始写进去,覆盖之前的那1000字节?或者有没有其他的解决方案。

为什么要读 1000 字节 ..? 如果字符位置确定的话直接替换不就可以了 ..?

<code class="lang-php"><?php $file = new SplFileObject( '你的文件', 'r+' );
$file->fseek( 30 ); // 30 修改成你需要的偏移量
$file->fwrite( '这是你要写入的字符串' );
</code>
Copy after login

如果替换前后的长度一样就可以,否则得重新写。

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template