Array_To_CSV.php
3 years ago
Currency.php
3 years ago
Device.php
2 years ago
Number_Formatter.php
3 years ago
Option.php
2 years ago
Request.php
2 years ago
Salt.php
3 years ago
Security.php
3 years ago
Singleton.php
2 years ago
String_Util.php
3 years ago
URL.php
3 years ago
WP_Async_Request.php
3 years ago
WordPress_Site_Date_Format_Pattern.php
3 years ago
Array_To_CSV.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\IAWP\Utils; |
| 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 | return \stream_get_contents($f); |
| 15 | } |
| 16 | } |
| 17 |