Symfony - Twig - dateTime HH:MM:SS.MMM in SS.MMM? -


how convert datetime hh:mm:ss:mmm in ss.mmm filter in twig please ( `` )?

exemple : 00:01:30.600 => 90.600

i tried {{ object.time | date("s") }} doesn't work ...

thanks !

as @john smith told in comment (unfortunately can't +1 deserves it), can use:

{{ object.time | date("s.u") }} 

to change microseconds miliseconds, have 2 choices:

  1. round 3 digits:

    {{ object.time | date("s.u") | round(3) }} 
  2. slice 3 last chars:

    {{ object.time | date("s.u") | slice(0, -3) }} 

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 -