I'am trying to print my timestamp formated date & time from mysql database in php Codeigniter but this will give me a error message :
A non well formed numeric value encountered
My code:
if ($userTasks) {
foreach ($userTasks as $key) {
echo time_convert($key->t_time);
}
}
public function time_convert($timestamp){
return date('l Y/m/d H:i', $timestamp);
}