file_put_contents(
$log,
$this->info['http_code'].", ".
$this->info['url'].", ".
'{"12345":"98765","56789":"54321"}'.", ".
date("Y-m-d H:m:i") .", ".
PHP_EOL,
FILE_APPEND
);
I have a log required to save json into one single csv cell
Because comma (,) it jump to next column's cell.
Anyone know how to store this json data in single cell?