We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement basic CSV parsing functionality.
As usual, keep it simple:
$data = $web->parseCsv('https://test-pages.phpscraper.de/1.csv');
$data = $web->go('https://test-pages.phpscraper.de/1.csv')->parseCsv()
$web->go('https://test-pages.phpscraper.de/1.csv'); $data = $web->parseCsv();
While the CSVs are flat by nature, they can be resolved into an associative array. This should be considered as an option. Suitable naming TBC.
The text was updated successfully, but these errors were encountered:
67e4a16
spekulatius
No branches or pull requests
Implement basic CSV parsing functionality.
API
As usual, keep it simple:
Direct Call
Chained
Separate Calls
Associative Array vs. Simple Array
While the CSVs are flat by nature, they can be resolved into an associative array. This should be considered as an option. Suitable naming TBC.
Consideration
The text was updated successfully, but these errors were encountered: