- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPdfDate.php
More file actions
30 lines (26 loc) · 901 Bytes
/
PdfDate.php
File metadata and controls
30 lines (26 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
namespace Mpdf\Utils;
class PdfDate
{
/**
* PDF documents use the internal date format: (D:YYYYMMDDHHmmSSOHH'mm'). The date format has these parts:
*
* YYYY The full four-digit year. (For example, 2004)
* MM The month from 01 to 12.
* DD The day from 01 to 31.
* HH The hour from 00 to 23.
* mm The minute from 00 to 59.
* SS The seconds from 00 to 59.
* O The relationship of local time to Universal Time (UT), as denoted by one of the characters +, -, or Z.
* HH The absolute value of the offset from UT in hours specified as 00 to 23.
* mm The absolute value of the offset from UT in minutes specified as 00 to 59.
*
* @return string
*/
public static function format($date)
{
$z = date('O'); // +0200
$offset = substr($z, 0, 3) . "'" . substr($z, 3, 2) . "'"; // +02'00'
return date('YmdHis', $date) . $offset;
}
}