Skip to content

Instantly share code, notes, and snippets.

@oppara
Created September 19, 2019 12:16
Show Gist options
  • Save oppara/afaca3bf099d8b0c704e700fe27e29fa to your computer and use it in GitHub Desktop.
Save oppara/afaca3bf099d8b0c704e700fe27e29fa to your computer and use it in GitHub Desktop.
CSVデータ作成
function makeCsv(array $record)
{
$tmp = [];
foreach ($record as $val) {
if (preg_match('/[,\r\n"]/', $val)) {
$val = str_replace('"', '""', $val);
$tmp[] = '"' . $val . '"';
continue;
}
$tmp[] = $val;
}
return implode(',', $tmp);
}
@oppara
Copy link
Author

oppara commented Sep 19, 2019

静彌とか

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment