简体   繁体   中英

Manipulate date with symfony 1.4

I would like to know if a class exists to manipulate date with symfony 1.4

I search a class like Calandar in Java where you can manipulate date with method like "add" to add x days to a date.

I found sfDatePlugin but it seems to work only symfony 1.2

Do you know a class like this ?

Use the built-in PHP DateTime class and the modify method:

$dt = new DateTime(); //will be now
$dt->modify('+3 days');
$dt->format('m/d/Y'); //takes the same params as date()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM