使用php,我们如何从csv文件中读取5行,调用另一个函数然后读取接下来的5行并重复此操作?

时间:2018-04-11 16:51:23

标签: php csvtoarray

以下是我的代码。此代码读取包含大约100个学生档案的csv文件。这些配置文件在此HTML页面中显示为幻灯片显示 - http://www.depts.ttu.edu/honors/medallion-ceremony/test/。我想为每5张个人资料显示一张广告幻灯片。请帮忙!

$profiles = csv_to_array($_SERVER['DOCUMENT_ROOT'].'/...../profiles.csv');

function csv_to_array($filename, $delimiter=',', $enclosure='"', $escape = '\\')
{
    if(!file_exists($filename) || !is_readable($filename)) return false;
    $header = null;
    $data = array();
    $lines = file($filename);
    foreach($lines as $line) {
        $values = str_getcsv($line, $delimiter, $enclosure, $escape);
        if(!$header) 
            $header = $values;
        else 
            $data[] = array_combine($header, $values);
    }
return $data;
}

function displayProfiles($limit=100)
{
    global $profiles;
    $count = 1;
    foreach ($profiles as $profile)
    {
        if ($count <= $limit)
        {
            displayProfile($profile);
            $count++;
        }
    }   
}

function displayProfile($profile) {.....}

1 个答案:

答案 0 :(得分:2)

您可以在displayProfiles功能中查看您所在的位置。使用模运算符http://php.net/manual/en/language.operators.arithmetic.php

然后你可以在你的循环中做这样的事情:

if($count % 5 == 0) { 
   displayAdvertisement();
}