🐘

PHP Date Format DD/MM/YYYY

Output: 15/01/2025
Quick Reference
Format String
d/m/Y
Output
15/01/2025

Format Date as 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/2025

PHP Date Format Codes

Code Meaning Example
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

Other Formats in PHP

DD/MM/YYYY in Other Languages

Official Documentation

For more information about date formatting in PHP, see the official documentation:

PHP Date Documentation →

Related Pages