PHP DateInterval to seconds

1 개요[ | ]

PHP duration to seconds
PHP DateInterval to seconds
<?php
function DateInterval2seconds($di) {
    return 1*DateTime::createFromFormat('U',0)->add($di)->format('U');
}
var_dump( DateInterval2seconds(new DateInterval('PT3S')) );
var_dump( DateInterval2seconds(new DateInterval('PT3H')) );
var_dump( DateInterval2seconds(new DateInterval('P1D')) );
var_dump( DateInterval2seconds(new DateInterval('P1M')) );
var_dump( DateInterval2seconds(new DateInterval('P1Y')) );

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}