假设您有一个具有以下结构的文件:txt 格式
"id,name,value
1,Dan,150
2,Peter,300
3,Mark,400
4,Victor,600"
我用来读取文件的这个函数:
function readAFile()
{
$userfileInfo = fopen("peopleInformation.txt", "r") or die("Unable to open the file.");
//echo fread($userfileInfo, filesize("peopleInformation.txt"));
$theData = fread($userfileInfo, filesize("peopleInformation.txt"));
echo $theData;
fclose($userfileInfo);
}
输出:
"id,name,value 1,Dan,150 2,Peter,300 3,Mark,400 4,Victor,600"
我将如何分离 150、300、400、600 并在 php 中求和它们。
qq_笑_17
烙印99
慕后森