dev-master
9999999-devCSV response for Symfony HttpFoundation
The Requires
by Ryan Schumacher
v0.0.1
0.0.1.0CSV response for Symfony HttpFoundation
The Requires
by Ryan Schumacher
CSV response for Symfony HttpFoundation
It should be noted CsvResponse extends StreamedResponse and uses goodby/csv library. The use of this response is relatively simple., (*2)
``` php <? use Symfony\Component\HttpFoundation\CsvResponse;, (*3)
$data = array( array('John Smith', 'john@smith.com'), array('Jane Smith', 'jane@smith.com') );, (*4)
new CsvResponse($data);, (*5)
```, (*6)
For further use please see goodby/csv, (*7)
CSV response for Symfony HttpFoundation
CSV response for Symfony HttpFoundation