- var_dump: documentation ( source)
- date_create: documentation ( source)
- strftime: documentation ( source)
- strtotime: documentation ( source)
- date_format: documentation ( source)
<?php
var_dump(strftime( '%Y-%m-%d %H:%M:%S', strtotime( '+1 year' ) ));
var_dump(date_format(date_create('+1 year'), 'Y-m-d H:i:s'));