woocommerce - How to change the date format in order-detail? -


i want change date format of order-detail. right coming in "8 06europe/amsterdam18 2014" , want in 26-06-2014 like: here link. appreciated.

note: site in dutch . date format needs changed.

$your_date = "2014-06-26";// may in date format or in date time format "2014-06-26 00:00:00" $date=date_create($your_date,timezone_open("europe/amsterdam")); echo date_format($date,"d-m-y");//gives output->   26-06-2014 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -