🐘

PHP DD/MM/YYYY

Output: 15/01/2025
Hurtig Reference
Format Streng
d/m/Y
Output
15/01/2025

Formater dato som DD/MM/YYYY i PHP

🐘 PHP
<?php $date = new DateTime(); echo $date->format('d/m/Y'); // Output: 31/12/2025 // Or using date() function echo date('d/m/Y'); // Output: 31/12/2025

PHP datoformat koder

Kode Betydning Eksempel
d Day (01-31) 31
j Day (1-31) 31
m Month (01-12) 12
n Month (1-12) 12
Y Year (4 digits) 2025
y Year (2 digits) 25
M Abbreviated month Dec
F Full month December

Andre formater i PHP

DD/MM/YYYY i andre sprog

Officiel Dokumentation

For mere information om datoformatering i PHP, se den officielle dokumentation:

PHP dato dokumentation →

Relaterede Sider