nozavroni / csvelte

🕺🏻 CSV and Tabular Data library for PHP
http://phpcsv.com/
Other
6 stars 0 forks source link

Need a method for returning CSV data #64

Open deni-zen opened 8 years ago

deni-zen commented 8 years ago

Just as there is a CSVelte\Input\String I need something that allows me to convert an array to a string of CSV data (so doing it in the opposite direction).

deni-zen commented 8 years ago

Something like...

<?php
$csvdata = some_func_that_gets_data();
$renderer = new CSVelte\Render\CSVString($csvdata);
$csvstring = (string) $renderer;

I don't know... something like that.