Sunday, May 20, 2012

Display date in different formats with PHP

[sourcecode language="php"]
echo date('Y-m-d H:i:s');
[/sourcecode]

Sample output : 2012-05-20 11:33:44

No comments:

Post a Comment

How to enable CORS in Laravel 5

https://www.youtube.com/watch?v=PozYTvmgcVE 1. Add middleware php artisan make:middleware Cors return $next($request) ->header('Acces...