PHP用空格分割文本为数组的方法_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP用空格分割文本为数组的方法

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

 2013/7/10 2:36:12  m22543  程序员俱乐部  我要评论(0)
  • 摘要:php逐行读取文本文件,然后处理空格分隔文本,输出为数组的方法。文本文档text.txt内容:1字段1字段22字段1字段23字段1字段24字段1字段2文本和文本之间用空格隔开,用php经过处理,输出为数组,一下是代码<?php$file=fopen("text.txt","r")orexit("Unabletoopenfile!");while(!feof($file)){$arr=split('',fgets($file));print_r($arr);}fclose($file);
  • 标签:方法 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教程由JS代码站出品

发表评论
用户名: 匿名