I'm stuck in a problem with regular expressions. I have a code where I print the value extracted from XML file in between the braces.
<td>{{dob}}</td>
So, here dob contains the date in yyyy-mm-dd (2013-12-03), but I want it in dd mm yyyy (3 Mar 2013). How can I print the value of date in above format using php echo
.
EDIT Now, currently it prints the values in YYYY-mm-dd format. Iwant to change the format
90