Jump to content

Convert DD/MM/YYYY to YYYY/MM/DD ?


mikemeadeuk

Recommended Posts

The DOC for that 'parser' indicates it just wants an expression that produces an assignable value. The code probably does use eval internally to accomplish that, but that is not directly an issue. The OP is apparently testing using eval, but since the {item.xxx} is the parser's syntax to indicate data values and is not valid php, directly using eval should produce an error.

 

I'm going to guess the following might work -

 

{{date('Y-m-d H:i:s', strtotime(str_replace('/','-',{item.StartDate})))}}

The DOC for that 'parser' indicates it just wants an expression that produces an assignable value. The code probably does use eval internally to accomplish that, but that is not directly an issue. The OP is apparently testing using eval, but since the {item.xxx} is the parser's syntax to indicate data values and is not valid php, directly using eval should produce an error.

 

I'm going to guess the following might work -

 

{{date('Y-m-d H:i:s', strtotime(str_replace('/','-',{item.StartDate})))}}

 

 

Works perfectly!! Thanks PFM, and everyone else for your help! :-)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.