🐘
PHP DD/MM/YYYY
Output: 15/01/2025
Snelle Referentie
Formaat String
d/m/Y
Output
15/01/2025
Datum formatteren als DD/MM/YYYY in 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/2025PHP datumformaatcodes
| Code | Betekenis | Voorbeeld |
|---|---|---|
| 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 |
Andere formaten in PHP
DD/MM/YYYY in andere talen
Officiële Documentatie
Voor meer informatie over datumformattering in PHP, zie de officiële documentatie: