我有Matrix以及如何从那里获得价值? 从文件中获取的数据,使矩阵可以具有不同的大小
由于
答案 0 :(得分:1)
假设(因为问题含糊不清),如果您读取内容并将结果存储在二维数组中,那么您将使用括号来查找单元格值。例如,这里将内容读入一个名为$ matrix的多维数组:
$contents = file_get_contents("myfile.csv");
$splitlines = explode("\n",$contents);//split the contents into rows
$matrix = array();
foreach($splitlines as $line){
$row = explode(",",$line);//split each line into columns
$matrix[] = $row;//add the array of columns as a new row in the matrix
}
现在解决矩阵中的任何值:
$samplevalue = $matrix[2][1]; //addresses the third row, second column.