我不知道怎么做...... 任何人都可以帮助和指导这个..
我有这样的数组;
$record_name = array("john", "dan", "kev", "kyle");
现在我想从.csv文件中显示该名称在数组上的记录..
我希望数组中的每个值都处于一个条件中。
这是我的剧本,但它没有显示任何内容......
$file = fopen('sample.csv', 'r');
echo "<table>";
foreach($record_name as $key => $value){
while (($line = fgetcsv($file)) !== FALSE) {
list($name, $age, $location) = $line;
if((strpos($name, $value) !==FALSE)){
echo "<tr>";
echo "<td>$name</td>";
echo "<td>$age</td>";
echo "<td>$location</td>";
echo "</tr>";
}
}
}
echo "</table>";
请参考代码..