I am using this code to get current unix time in php.
echo time();
and it is giving me this result
1480578383
If I convert this in readable date then it will be
Thu, 01 Dec 2016 07:46:23 GMT
Well I don't want that. What I want is a function that can give me today's date with specific time which is 23:00:00.
And when I convert it to readable date then it should be
Thu, 01 Dec 2016 23:00:00 GMT
"Thu, 01 Dec 2016" is the current date.