您的位置:

php怎么读文件内容拆分内,php分割文本

本文目录一览:

B.php中读取文件内容的几种方法

php读取文件内容:

—–第一种方法—–fread()——–

?php$file_path= "test.txt";if(file_exists($file_path)){$fp= fopen($file_path,"r");$str= fread($fp,filesize($file_path));//指定读取大小,这里把整个文件内容读取出来echo $str = str_replace("\r\n","br

/",$str);

}?123456789101112131415161718

——–第二种方法————

?php$file_path= "test.txt";if(file_exists($file_path)){$str= file_get_contents($file_path);//将整个文件内容读入到一个字符串中$str= str_replace("\r\n","br

/",$str);echo$str;

}?123456789101112131415161718192021222324

-----第三种方法------------?php$file_path= "test.txt";if(file_exists($file_path)){$fp= fopen($file_path,"r");$str= "";$buffer= 1024;//每次读取

1024 字节while(!feof($fp)){//循环读取,直至读取完整个文件$str.= fread($fp,$buffer);

}$str= str_replace("\r\n","br

/",$str);echo$str;

}?123456789101112131415161718192021222324252627282930313233343536373839404142

-------第四种方法--------------?php$file_path= "test.txt";if(file_exists($file_path)){$file_arr= file($file_path);for($i=0;$icount($file_arr);$i++){//逐行读取文件内容echo$file_arr[$i]."br

/";

}/*

foreach($file_arr

as $value){

echo

$value."br /";

}*/}?1234567891011121314151617181920212223242526272829303132333435

—-第五种方法——————–

?php$file_path= "test.txt";if(file_exists($file_path)){$fp= fopen($file_path,"r");$str="";while(!feof($fp)){$str.= fgets($fp);//逐行读取。如果fgets不写length参数,默认是读取1k。}$str= str_replace("\r\n","br

/",$str);echo$str;

}?123456789101112131415161718192021222324252627282930313233343536

php如何将文本域的内容拆分为数组,逐行写入数据库

PHP 中的fgets() 函数可以实现

fgets() 函数从文件指针中读取一行。

fgets(file,length)

参数说明

file 必需。规定要读取的文件。

length 可选。规定要读取的字节数。默认是 1024 字节。

详细说明

从 file 指向的文件中读取一行并返回长度最多为 length - 1 字节的字符串。碰到换行符(包括在返回值中)、EOF 或者已经读取了 length - 1 字节后停止(要看先碰到那一种情况)。如果没有指定 length,则默认为 1K,或者说 1024 字节。

若失败,则返回 false。

注释:length 参数从 PHP 4.2.0 起成为可选项,如果忽略,则行的长度被假定为 1024 字节。从 PHP 4.3 开始,忽略掉 length 将继续从流中读取数据直到行结束。如果文件中的大多数行都大于 8 KB,则在脚本中指定最大行的长度在利用资源上更为有效。

从 PHP 4.3 开始本函数可以安全用于二进制文件。早期的版本则不行。

如果碰到 PHP 在读取文件时不能识别 Macintosh 文件的行结束符,可以激活 auto_detect_line_endings 运行时配置选项。

例如:

test.txt 文本内容如下:

Hello, this is a test file.

There are three lines here.

This is the last line.

?php

//读取一行

$file = fopen("test.txt","r");

echo fgets($file);

fclose($file);

?

输出:

Hello, this is a test file.

?php

//循环读取每一行

$file = fopen("test.txt","r");

while(! feof($file)) {

echo $str = fgets($file). "br /";

//这里可以逐行的写入数据库中

//mysql_query("insert into table(id,contents) values(NULL,'".$str."')");

}

fclose($file);

?

输出:

Hello, this is a test file.

There are three lines here.

This is the last line.

php中如何分割文本

PHP用空格分割文本为数组的方法:

php逐行读取文本文件,然后处理空格分隔文本,输出为数组的方法。

文本文档text.txt内容:

1 字段1 字段2 2 字段1 字段2 3 字段1 字段2 4 字段1 字段2

文本和文本之间用空格隔开,用php经过处理,输出为数组,以下是代码:

php $file = fopen("text.txt", "r") or exit("Unable to open file!");

while(!feof($file)) { $arr = split(' ' , fgets($file)); print_r($arr); } fclose($file);

输出结果:

Array ( [0] = 1 [1] = 字段1 [2] = 字段2 ) Array ( [0] = 2 [1] = 字段1 [2] = 字段2 ) Array ( [0] = 3 [1] = 字段1 [2] = 字段2 ) Array ( [0] = 4 [1] = 字段1 [2] = 字段2 )

这样就实现了PHP用空格分割文本为数组的方法.

用PHP读取一个文本文件,以空格为分界符,把每个分段存储在数组中。怎么写?

$str = "你好1 你好2 你好3";

//$str = file_get_contents("/path/to/file/xxx.xxx"); //读取文件内容用这个

$arr = explode(" ", $str);

$index = rand(0, count($arr) - 1); //产生随机数

echo $arr[$index];

exit;

原创,望采纳

php 逐行读取txt 并,分隔判断

?

$file = file_get_contents('text.txt');

//读取文件

$lines = explode('\n', $file);

//按行分割字符串

echo 'table';

//用表格输出

for($lines as $line){

echo 'tr';

//分行

$keys = explode(',', $line);

//按逗号分割

for($keys as $key){

echo "td$key/td";

//输出每行中的各列

}

echo '/tr';

}

echo '/table';