The colon is not working in the name of .xlsx file
when I use it without colon is fine but when i add colon I get don't get my excel fil generated
I am adding this colon to show time at which it has being generated
$created = date('d-m-Y H:i:s', time());
$file_path = $file_path.$result_group["correct_label"]."_".$created.".xlsx";
how ever I read the document that tell u should avoid this
\ (backslash)
/ (forward slash)
: (colon)
* (asterisk),
? (question mark)
" (double quotes)
< (left angle bracket)
(right angle bracket)
| (pipe)
you can read the dcument Here
so what should I use in place of that i don't want to use underscore
and don't want to use the timestamp the time should be in common man readable form
any suggestion will be appreciated