{"id":292,"date":"2016-09-29T11:52:33","date_gmt":"2016-09-29T11:52:33","guid":{"rendered":"http:\/\/blog.chen-hongyi.com\/?p=292"},"modified":"2016-09-29T11:52:33","modified_gmt":"2016-09-29T11:52:33","slug":"php-create-a-tmp-csv-file-without-creating-a-real-file-in-file-system","status":"publish","type":"post","link":"https:\/\/chen-hongyi.com\/?p=292","title":{"rendered":"PHP: create a tmp CSV file without creating a real file in file system"},"content":{"rendered":"<blockquote>\n<pre>ob_start();\r\n$df = fopen('php:\/\/output', 'w');\r\nfputcsv($df, array_keys(reset($yourData)), ';');\r\nforeach ($yourData as $data) {\r\n    fputcsv($df, $data, ';');\r\n}\r\nfclose($df);\r\n$csv = ob_get_clean();<\/pre>\n<\/blockquote>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ob_start(); $df = fopen(&#8216;php:\/\/output&#8217;,  &hellip; <a href=\"https:\/\/chen-hongyi.com\/?p=292\">\u7ee7\u7eed\u9605\u8bfb <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-292","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=\/wp\/v2\/posts\/292","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=292"}],"version-history":[{"count":1,"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=\/wp\/v2\/posts\/292\/revisions"}],"predecessor-version":[{"id":293,"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=\/wp\/v2\/posts\/292\/revisions\/293"}],"wp:attachment":[{"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chen-hongyi.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}