php删除文本文件中的任意行的方法:1、指定操作文件与要删除的行数;2、读取文件数据到数组中;3、删除文件中的指定行;4、重新整理文件数据;5、将删除数据后的文件重新写入原文件。
代码实现:
(推荐教程:php视频教程) php
$filename = " aaa.txt " ; // 定义操作文件
$delline = 3 ; // 要删除的行数
$farray = file ( $filename ); // 读取文件数据到数组中
for ( $i = 0 ; $i < count ( $farray ); $i ++ )
{
if ( strcmp ( $i + 1 , $delline ) == 0 ) // 判断删除的行,strcmp是比较两个数大小的函数
{
continue ;
}
if ( trim ( $farray [ $i ]) <> "" ) // 删除文件中的所有空行
{
$newfp .= $farray [ $i ]; // 重新整理后的数据
}
}
$fp = @ fopen ( $filename , " w " ); // 以写的方式打开文件
@ fputs ( $fp , $newfp );
@ fclose ( $fp );
?>
文本文件aaa.txt如下:10.8.0.1:255.255.255.0
10.8.0.2:255.255.255.0
10.8.0.3:255.255.255.0
10.8.0.4:255.255.255.0
10.8.0.5:255.255.255.0
10.8.0.6:255.255.255.0
10.8.0.8:255.255.255.0
相关推荐:php培训