I’m curious - I need to use PHP to get the current date to slap into a weblog entries tag as a parameter. I can either use the EE function $LOC->decode_date(all the date/time formatting goodies) or the PHP function date(all the date/time formatting goodies).
Why should/would I use one over the other? What about performance - seems like date() would be faster wouldn’t it (I know it’s a matter of milliseconds probably, but just curious).
Thanks!