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分割中文字符串为数组的简单例子
php分割中英文字符串的几种方法
php split()字符串分割函数应用举例
php分割GBK中文乱码的解决方法
php字符串分割函数explode的例子