I'm trying to get the current datetime in codeigniter for my school project. I made a sample function in controller for this which looks like this:
public function sample(){
        date_default_timezone_set('Asia/Manila');
        echo date('y-m-d h:i:s');
    }
however, i found out that this outputs 20-01-20 04:52:19 instead of 20-01-20 16:52:19.
any idea how to fix this ? thanks .