Giter VIP home page Giter VIP logo

Comments (6)

GrahamCampbell avatar GrahamCampbell commented on May 26, 2024

It's not exactly clear how to do this, without needing to be able to rewind the stream 1 byte. We'd have to know if the last character was a newline, to determine if parsing was aborted mid-line.

from csv.

GrahamCampbell avatar GrahamCampbell commented on May 26, 2024

Hmmm, even that is actually incorrect. Consider the following file with an fget length set to 6:

foo,"
bar"

We would incorrectly thing we are done processing the line. 😭

from csv.

GrahamCampbell avatar GrahamCampbell commented on May 26, 2024

Oh, man. fgetcsv actually keeps going and reads more than 6 bytes, because "the split would occur inside an enclosure". :trollface:

https://3v4l.org/kfrkI

from csv.

nyamsprod avatar nyamsprod commented on May 26, 2024

I do not believe that length argument behave as you think.
The example below uses fgets but it is the same argument/behaviour as with fgetcsv.
The corresponding method on SplFileObject is https://www.php.net/manual/en/splfileobject.setmaxlinelen.php

$text = <<<TXT
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Duis nec sapien felis, ac sodales nisl.
Nulla vitae magna vitae purus aliquet consequat.
TXT;

$stream = tmpfile();
fwrite($stream, $text);
rewind($stream);
while (($buffer = fgets($stream, 20)) !== false) {
    echo $buffer, PHP_EOL;
}
if (!feof($stream)) {
    echo "Error: unexpected fgets() fail\n";
}
fclose($stream);

will produce

Lorem ipsum dolor s
it amet, consectetu
r adipiscing elit.

Duis nec sapien fel
is, ac sodales nisl
.

Nulla vitae magna v
itae purus aliquet 
consequat.

It will only split/ read the line in chunk size, it will not force ending reading the line.

from csv.

nyamsprod avatar nyamsprod commented on May 26, 2024

TL;DR: I do not think setting this value to anything other than 0 will help prevent DDOS attack. IMHO it should be left to the current value for maximum compatibility and to avoid enclosure issue.

from csv.

nyamsprod avatar nyamsprod commented on May 26, 2024

I will close this issue as a won't fix because of the argument I put forward.

from csv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.