array_to_csv.php
3 years ago
date_format.php
3 years ago
exact_range.php
3 years ago
number_formatter.php
3 years ago
relative_range.php
3 years ago
request.php
3 years ago
salt.php
3 years ago
security.php
3 years ago
singleton.php
3 years ago
string.php
3 years ago
timezone.php
3 years ago
url.php
3 years ago
wp-async-request.php
3 years ago
array_to_csv.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | class Array_To_CSV |
| 6 | { |
| 7 | public static function array2csv($data, $delimiter = ',', $enclosure = '"', $escape_char = '\\') |
| 8 | { |
| 9 | $f = fopen('php://memory', 'r+'); |
| 10 | foreach ($data as $item) { |
| 11 | fputcsv($f, $item, $delimiter, $enclosure, $escape_char); |
| 12 | } |
| 13 | rewind($f); |
| 14 | |
| 15 | return stream_get_contents($f); |
| 16 | } |
| 17 | } |
| 18 |