最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Reading a 9mb csv file in php - Memory exhausted - Stack Overflow

programmeradmin1浏览0评论

good afternoon, I'm trying to read a csv file that is 9mb in size and contains about 40000 records. However I'm receiving this error Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 47464808 bytes). but my php.ini.overrides settings are: upload_max_filesize = 100M post_max_size = 108M This error occurs when I send the data to my view and try to display it.

//-->view code
<?php if (!empty($linhas)) : ?>
            <div class="m-3 table-responsive text-nowrap mt-1" 
style="min-height:50vh">
                <div class="d-flex justify-content-center">
                    <h5 class="m-2">Dados do Arquivo</h5>
                </div>
                <table class="table table-striped table-bordered table-hover">
                    <thead class="table-light">
                        <tr>
                            <?php foreach ($linhas[0] as $coluna => $key) : ?>
                                <th class="text-center"><?= $coluna ?></th>
                            <?php endforeach; ?>
                        </tr>
                    </thead>
                    <tbody class="table-border-bottom-0">
                        <?php foreach ($linhas as $linha) : ?>
                            <tr>
                                <?php foreach ($linha as $valor) : ?>
                                    <td class="text-center"><?= $valor ?></td>
                                <?php endforeach; ?>
                            </tr>
                        <?php endforeach; ?>
                    </tbody>
                </table>
            </div>
        <?php endif; ?>
//-->end view code

//-->php code
public static function processar(string $arquivo): array {

    $finfo = new finfo();
    if (base64_encode(base64_decode($arquivo, true)) === $arquivo) {
        $conteudo = base64_decode($arquivo, true);
        $ext = $finfo->buffer($conteudo, FILEINFO_MIME_TYPE);
    } else {
        $conteudo = fopen($arquivo, 'r');
        if ($conteudo === false) {
            throw new Exception('Erro ao abrir o arquivo.');
        }
        $ext = $finfo->file($arquivo, FILEINFO_MIME_TYPE);
    }

    $resultado = match ($ext) {
        'text/csv' => self::csvFile($conteudo),
        default => false
    };
    if (is_resource($conteudo)) {
        fclose($conteudo);
    }
    if ($resultado === false) throw new Exception('O arquivo está vazio ou inválido!');

} 

private static function csvFile($csv): array {
    $data = [];
    $keys = fgetcsv($csv);
    while (($valores = fgetcsv($csv)) !== false) {
        if (count($valores) === count($keys)) {
            $linha = [];

            for ($i = 0; $i < count($keys); $i++) {
                $linha[$keys[$i]] = $valores[$i];
            }

            $data[] = $linha;
        }
    }
    if (empty($data)) {
        throw new Exception('O arquivo CSV está vazio ou inválido!');
    }
    return $data;

I'm sending this data to a view to generate a table with the csv. the error often happens in the view, but sometimes it also happens in the file where i show the code. Sorry for my bad English!

发布评论

评论列表(0)

  1. 暂无评论