পিএইচপি তারিখ ও সময় ফরম্যাটিং
এই ক্লাসে আমরা পিএইচপিতে তারিখ ও সময় কিভাবে সেট করতে হয়, কিভাবে ব্যবহার করতে হয়, কি কি নিয়ম এবং ফরম্যাট মেনে চলতে হয়, তারিখ ও সময় নিয়ে পিএইচপির বিল্ট-ইন কি কি ফাংশন রয়েছে এবং সেগুলো কিভাবে ব্যবহার করতে হয় ইত্যাদি বিষয়গুলো জানার চেষ্টা করব।
তারিখ ও সময়কে বিভিন্নভাবে সেটআপ, ফরম্যাটিং এবং প্রেজেন্টেশনের জন্য পিএইচপির বেশকিছু বিল্ট ইন ফাংশন আছে। এই ফাংশনগুলো ব্যবহার করে আমরা তারিখ ও সময়কে আমাদের পছন্দমত বিন্যাস করে প্রদর্শন করতে পারি।
তারমধ্যে ২টি গুরুত্বপূর্ণ ফাংশন হল, date()
এবং time()
। আমরা প্রথমে date()
ফাংশন বা তারিখ ফরম্যাট করা নিয়ে আলোচনা করব। শুরু করা যাক।
তারিখ ফরম্যাটিং
আমরা পিএইচপি এর date()
ফাংশন ব্যবহার করে date বা তারিখ ফরম্যাট করতে পারি। এই ফাংশনের প্রথম প্যারামিটার হচ্ছে ফরম্যাট – অর্থাৎ যে রূপে বা গঠনে আমরা তারিখগুলোকে প্রদর্শন করতে প্রত্যাশী – এবং দ্বিতীয় প্যারামিটার হচ্ছে actual date বা প্রকৃত তারিখ। পিএইচপির বেঁধে দেয়া নিয়ম মেনে তারিখের ফরম্যাট আমরা আমাদের পছন্দমত দিতে পারি বা ব্যবহার করতে পারি। একটি উদাহরণ দেখা যাক।
Syntax
date(format, timestamp)
date(format, timestamp)
Example
<?php
// date will be shown in this format
// 01(day)-01(month)-1970(year)
echo date("d-m-Y");
<?php
// date will be shown in this format
// 01(day)-01(month)-1970(year)
echo date("d-m-Y");
(তারিখ যেহেতু বিবর্তনশীল, তাই ডকুমেন্টেশন লেখাকালীন) আউটপুটঃ
28-01-2024
28-01-2024
ফাংশন প্যারামিটারে পাস করা স্ট্রিং ডাটাগুলোর মধ্যে d
মানে দিন, m
মানে মাস এবং Y
মানে বছর নির্দেশ করা হয়। এখানে আমরা যে কোন ফরম্যাট ব্যবহার করতে পারি। তার একটি উদাহরণ দেখা যাক।
<?php
echo date("d/m/Y"); // 21/07/2021
<?php
echo date("d/m/Y"); // 21/07/2021
আউটপুটঃ
28/01/2024
28/01/2024
datetime এর ভ্যালিড ফরম্যাট চার্টশীট
ফাংশন প্যারামিটারে আমাদেরকে ভ্যালিড স্ট্রিং ডাটা বা ফরম্যাট পাস করতে হবে। যে সকল characters কে format parameter string এ রিকগনাইজ করা হয় নিম্নে তার একটি common চার্টশীট দেয়া হল।
Format Character | Description | Example |
---|---|---|
Day | --- | --- |
d | The day of the month (2 digits with leading zeros) | 01 to 31 |
D | A textual representation of a day (three letters) | Mon through Sun |
j | The day of the month without leading zeros | 1 to 31 |
l | A full textual representation of the day of the week | Sunday through Saturday |
w | Numeric representation of the day of the week | 0 (for Sunday) to 6 (for Saturday) |
z | The day of the year (starting from 0) | 0 to 365 |
Week | --- | --- |
W | ISO-8601 week number of year, weeks starting on Monday | Example: 42 (the 42nd week in the year) |
Month | --- | --- |
F | A full textual representation of a month | January through December |
m | A numeric representation of a month (with leading zeros) | 01 to 12 |
M | A short textual representation of a month (three letters) | Jan through Dec |
n | A numeric representation of a month (without leading zeros) | 1 to 12 |
t | Number of days in the given month | 28 to 31 |
Year | --- | --- |
L | Whether it's a leap year (1 if it is a leap year) | 1 (if it is a leap year), 0 otherwise. |
y | A two digit representation of a year | Example: 01 or 99 |
Y | A full numeric representation of a year, at least four digits, with - for years BCE. | Examples: -0055, 0787, 1999, 2024, 10191 |
Time | --- | --- |
a | Lowercase Ante meridiem and Post meridiem | am or pm |
A | Uppercase Ante meridiem and Post meridiem | AM or PM |
g | 12-hour format of an hour without leading zeros | 1 to 12 |
G | 24-hour format of an hour without leading zeros | 0 to 23 |
h | 12-hour format of an hour with leading zeros | 01 to 12 |
H | 24-hour format of an hour with leading zeros | 00 to 23 |
i | Minutes with leading zeros | 00 to 59 |
s | Seconds, with leading zeros | 00 to 59 |
u | Microseconds | 000000 to 999999 |
v | Milliseconds | 000 to 999 |
Timezone | --- | --- |
e | The timezone identifier | Examples: UTC, GMT, EST, MDT, Asia/Dhaka |
T | The timezone abbreviation, if known; otherwise, the GMT offset. | Examples: UTC, GMT, EST, MDT, +0630 |
O | Difference to Greenwich time (GMT) without colon between hours and minutes. | GMT-0800 |
P | Difference to Greenwich time, with colon between hours and minutes. | GMT-08:00 |
আরো জানতে চাইলে date_format
ম্যানুয়াল পড়ুন।
সময় ফরম্যাটিং
পিএইচপিতে চলমান বর্তমান সময় বের করার প্রয়োজনে time()
ফাংশনটি ব্যবহার করা হয়। এই ফাংশনটি ইউনিক্স এপক টাইম (Unix Epoch) তথা (January 1 1970 00:00:00 GMT) থেকে নিয়ে বর্তমান মুহুর্ত পর্যন্ত সময়কে সেকেন্ডে রূপান্তরিত করে ইন্টিজার ডাটা টাইপ আকারে রিটার্ন করে। ফাংশনটির কোন প্যারামিটার নেই। উদাহরণঃ
<?php
// Output at the time of writing: 1706409469
echo time();
<?php
// Output at the time of writing: 1706409469
echo time();
আউটপুটঃ
1706409469
1706409469
এখানে আমরা এপক টাইম থেকে নিয়ে বর্তমান মুহুর্ত পর্যন্ত সময়কে একটি ইন্টিজার সংখ্যায় সেকেন্ডে রূপান্তরিত অবস্থায় দেখতে পাচ্ছি। এখন আমরা এই ইন্টিজারকে কিভাবে ব্যবহার এবং উপস্থাপনযোগ্য তারিখ ও সময়ে রূপান্তর করতে পারি সেটা দেখব। সেজন্য আমরা পূর্ববর্তী date()
ফাংশনের সাহায্য নিতে পারি। উদাহরণঃ
<?php
// Output at the time of writing: 28-01-2024
echo date("d-m-Y", time());
<?php
// Output at the time of writing: 28-01-2024
echo date("d-m-Y", time());
আউটপুটঃ
28-01-2024
28-01-2024
এখানে আমরা শুধু তারিখকে ফরম্যাট করেছি। এবার এই ইন্টিজার সংখ্যায় থাকা তারিখ ও সময়কে কিভাবে একসাথে রূপান্তর করতে পারি সেটা দেখব।
<?php
// Output at the time of writing: 28-01-2024 02:53:21
echo date("d-m-Y H:i:s", time());
<?php
// Output at the time of writing: 28-01-2024 02:53:21
echo date("d-m-Y H:i:s", time());
আউটপুটঃ
28-01-2024 02:53:21
28-01-2024 02:53:21
Unix Time & Timestamp
Unix Time এর পরিচয়
Unix Time এক ধরণের তারিখ এবং সময়ের উপস্থাপনা যা ব্যাপকভাবে কম্পিউটিং বা এজাতীয় টেকনোলজিতে ব্যবহৃত হয়। এটি ১৯৭০ সালের ১ জানুয়ারি ০০:০০:০০ Coordinated Universal Time বা UTC থেকে অতিবাহিত হওয়া সময়কে সেকেন্ডের নিক্তিতে পরিমাপ করে। যা Unix epoch বা ইউনিক্স উপযুগ নামেও পরিচিত। এটি সম্পন্ন হয় leap seconds এর সাথে সামঞ্জস্য ছাড়াই।
আধুনিক কম্পিউটিং টেকনোলজি এই পর্যায়ে উন্নীত হয়েছে যে, ভ্যালুগুলো কখনও কখনও মাইক্রোসেকেন্ড বা ন্যানোসেকেন্ডের মতো উচ্চতর granularity এর সাথে সংরক্ষণ করা সম্ভব হয়।
Unix Time এর উদ্ভব
Unix Time এর উদ্ভব ঘটে যখন ১৯৬৯ সালে Bell Labs রিসার্চ সেন্টারে সময়ের প্রতিষ্ঠিত প্রতিষ্ঠান AT&T কর্তৃক Unix অপারেটিং সিস্টেমের জন্য একটি system time এর প্রয়োজন অনুভূত হয়। পরবর্তীতে এটি অন্যান্য কম্পিউটার অপারেটিং সিস্টেম, ফাইল সিস্টেম, পিএইচপিসহ অন্যান্য প্রোগ্রামিং ভাষা এবং ডাটাবেসে ব্যাপকভাবে ব্যবহৃত হয়েছে, হচ্ছে।
পিএইচপিতে Unix Timestamp তৈরি
পিএইচপিতে Unix Timestamp তৈরি বা বের জন্য যে বিল্ট-ইন ফাংশন আমরা ব্যবহার করতে পারি সেটি হল, strtotime()
ফাংশন। এই ফাংশনের প্রথম প্যারামিটার হচ্ছে তারিখ এবং দ্বিতীয় প্যারামিটার হচ্ছে ইনপুট ফরম্যাট। উদাহরণঃ
<?php
// Output at the time of writing: 1706400000
echo strtotime("28-01-2024");
<?php
// Output at the time of writing: 1706400000
echo strtotime("28-01-2024");
আউটপুটঃ
1706400000
1706400000
অতীত, বর্তমান, ভবিষ্যতের তারিখ বের করা
পছন্দমাফিক নির্ধারিত সময় ও তারিখ বের করার ক্ষেত্রে strtotime()
ফাংশনটি খুবই শক্তিশালী একটি ফাংশন। কারণ, পিএইচপি ম্যানুয়াল অনুযায়ী ফাংশনটি যেকোন English textual datetime description কে Unix timestamp এ রূপান্তর করে। ফলে আমরা এই ফাংশন দিয়ে খুব সহজে মানুষের বোধগম্য ভাষা এবং উপায় ব্যবহার করে অতীত, বর্তমান বা ভবিষ্যতের যেকোন সময় এবং তারিখ পেতে পারি।
এই ফাংশনের প্রথম প্যারামিটার হচ্ছে English date format ধারণ করে এমন একটি string ডাটা এবং দ্বিতীয় প্যারামিটার হচ্ছে baseTimestamp — তথা কোন নির্ধারিত Timestamp মৌল হিসেবে প্রদান করা, যার ভিত্তিতে প্রথম প্যারামিটারের সময় ও তারিখ গণনা হবে। এটি ঐচ্ছিক প্যারামিটার। না দেয়া হলে বর্তমান সময়কে কেন্দ্র করে গণনা সম্পন্ন হবে। উদাহরণঃ
<?php
// Output at the time of writing: 1706527660
echo strtotime("+1 day") . "\n";
<?php
// Output at the time of writing: 1706527660
echo strtotime("+1 day") . "\n";
আউটপুটঃ
1706527660
1706527660
আমরা দেখতে পাচ্ছি ফাংশনটি একটি ইন্টিজার রিটার্ন করেছে, যা মূলত একটি timestamp। আমাদের প্রত্যাশিত সময় ও তারিখ সেকেন্ড হিসেবে গুণন হয়ে এতে সংরক্ষিত আছে। ফলে আমরা date()
ফাংশনের সাহায্যে একে খুব সহজে বোধগম্য তারিখ ও সময়ে রূপান্তর করতে পারি। উদাহরণঃ
<?php
// Output at the time of writing: 29-01-2024
echo date("d-m-Y", strtotime("+1 day"));
<?php
// Output at the time of writing: 29-01-2024
echo date("d-m-Y", strtotime("+1 day"));
আউটপুটঃ
29-01-2024
29-01-2024
অতীত, বর্তমান, ভবিষ্যতের সময় বের করা
উপরে আমরা শুধু তারিখ দেখতে পাচ্ছি যেহেতু আমরা সময়ের ফরম্যাট date()
ফাংশনে প্রদান করিনি। এবার চলুন তারিখের সাথে সাথে সময়কেও রূপান্তর করি। উদাহরণঃ
<?php
// Output at the time of wirting: 29-01-2024 13:41:02
echo date("d-m-Y H:i:s", strtotime("+1 day"));
<?php
// Output at the time of wirting: 29-01-2024 13:41:02
echo date("d-m-Y H:i:s", strtotime("+1 day"));
আউটপুটঃ
29-01-2024 13:41:02
29-01-2024 13:41:02
আবার চাইলে ভবিষ্যত বা অতীতের কোন তারিখ পেতে English textual datetime না দিয়ে সরাসরি কোন একটি তারিখ string আকারে দিয়ে তার টাইমস্ট্যাম্প পেতে পারি। উদাহরণঃ
<?php
// Output: 1706486400
echo strtotime("29-01-2024");
<?php
// Output: 1706486400
echo strtotime("29-01-2024");
আউটপুটঃ
1706486400
1706486400
অতঃপর সেই টাইমস্টাম্পকে date()
ফাংশন দিয়ে মানুষের বোধগম্য ফরম্যাটে রূপান্তর করতে পারি। উদাহরণঃ
<?php
// Output: 24-02-2024
echo date("d-m-Y", strtotime("24-02-2024"));
<?php
// Output: 24-02-2024
echo date("d-m-Y", strtotime("24-02-2024"));
আউটপুটঃ
24-02-2024
24-02-2024
তারিখের পাশাপাশি সময়ও পেতে পারি যদি আমরা পর্যাপ্ত ফরম্যাট date()
ফাংশনে প্রদান করি। উদাহরণঃ
<?php
// Output: 24-02-2024 08:30:00am
echo date("d-m-Y H:i:sa", strtotime("24-02-2024 08:30:00"));
<?php
// Output: 24-02-2024 08:30:00am
echo date("d-m-Y H:i:sa", strtotime("24-02-2024 08:30:00"));
আউটপুটঃ
24-02-2024 08:30:00am
24-02-2024 08:30:00am
এভাবেই আমরা প্রয়োজনমাফিক বিভিন্ন ধরণের তারিখ ইউনিক্স টাইমস্টাম্পে বের করে date()
ফাংশন দিয়ে আমাদের বোধগম্য ভাষায় উপস্থাপন করতে পারি। নিম্নে কিছু উদাহরণ দেয়া হলঃ
<?php
// Output at the time of writing: 29-01-2024
echo date("d-m-Y", strtotime("+1 day")) . "\n";
// Output at the time of writing: 04-02-2024
echo date("d-m-Y", strtotime("+1 week")) . "\n";
// Output at the time of writing: 06-02-2024
echo date("d-m-Y", strtotime("+1 week 2 days 4 hours 2 seconds")) . "\n";
// Output at the time of writing: 01-02-2024
echo date("d-m-Y", strtotime("next Thursday")) . "\n";
// Output at the time of writing: 22-01-2024
echo date("d-m-Y", strtotime("last Monday")) . "\n";
<?php
// Output at the time of writing: 29-01-2024
echo date("d-m-Y", strtotime("+1 day")) . "\n";
// Output at the time of writing: 04-02-2024
echo date("d-m-Y", strtotime("+1 week")) . "\n";
// Output at the time of writing: 06-02-2024
echo date("d-m-Y", strtotime("+1 week 2 days 4 hours 2 seconds")) . "\n";
// Output at the time of writing: 01-02-2024
echo date("d-m-Y", strtotime("next Thursday")) . "\n";
// Output at the time of writing: 22-01-2024
echo date("d-m-Y", strtotime("last Monday")) . "\n";
আউটপুটঃ
29-01-2024
04-02-2024
06-02-2024
01-02-2024
22-01-2024
29-01-2024
04-02-2024
06-02-2024
01-02-2024
22-01-2024
শুধুমাত্র Year/Month/Day/Hour/Minute/Second এর মান বাড়াতে চাইলে আমরা এই ফাংশনেই প্রথম প্যারামিটার হিসেবে পছন্দমাফিক ফরম্যাট এবং English textual datetime দিতে পারি। উদাহরণঃ
<?php
// Output at the time of writing: 28-01-2025 15:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 year")) . "\n";
// Output at the time of writing: 28-02-2024 15:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 month")) . "\n";
// Output at the time of writing: 29-01-2024 15:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 day")) . "\n";
// Output at the time of writing: 28-01-2024 16:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 hour")) . "\n";
// Output at the time of writing: 28-01-2024 15:56:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 minute")) . "\n";
// Output at the time of writing: 28-01-2024 15:55:43pm
echo date("d-m-Y H:i:sa", strtotime("+1 second")) . "\n";
<?php
// Output at the time of writing: 28-01-2025 15:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 year")) . "\n";
// Output at the time of writing: 28-02-2024 15:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 month")) . "\n";
// Output at the time of writing: 29-01-2024 15:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 day")) . "\n";
// Output at the time of writing: 28-01-2024 16:55:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 hour")) . "\n";
// Output at the time of writing: 28-01-2024 15:56:42pm
echo date("d-m-Y H:i:sa", strtotime("+1 minute")) . "\n";
// Output at the time of writing: 28-01-2024 15:55:43pm
echo date("d-m-Y H:i:sa", strtotime("+1 second")) . "\n";
আউটপুটঃ
28-01-2025 15:55:42pm
28-02-2024 15:55:42pm
29-01-2024 15:55:42pm
28-01-2024 16:55:42pm
28-01-2024 15:56:42pm
28-01-2024 15:55:43pm
28-01-2025 15:55:42pm
28-02-2024 15:55:42pm
29-01-2024 15:55:42pm
28-01-2024 16:55:42pm
28-01-2024 15:56:42pm
28-01-2024 15:55:43pm
স্ট্রিং ডাটা হিসেবে English textual datetime দেয়ার সময় +
সাইন এবং সংখ্যার গণনা ব্যবহার না করে আমরা চাইলে সরাসরি স্ট্রিং ডাটা ব্যবহার করতে পারি। উদাহরণ দেখা যাকঃ
<?php
// Output at the time of writing: 28-01-2025 16:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next year")) . "\n";
// Output at the time of writing: 28-02-2024 16:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next month")) . "\n";
// Output at the time of writing: 29-01-2024 16:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next day")) . "\n";
// Output at the time of writing: 28-01-2024 17:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next hour")) . "\n";
// Output at the time of writing: 28-01-2024 16:07:01PM
echo date("d-m-Y H:i:sA",strtotime("next minute")) . "\n";
// Output at the time of writing: 28-01-2024 16:06:02PM
echo date("d-m-Y H:i:sA",strtotime("next second")) . "\n";
<?php
// Output at the time of writing: 28-01-2025 16:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next year")) . "\n";
// Output at the time of writing: 28-02-2024 16:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next month")) . "\n";
// Output at the time of writing: 29-01-2024 16:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next day")) . "\n";
// Output at the time of writing: 28-01-2024 17:06:01PM
echo date("d-m-Y H:i:sA",strtotime("next hour")) . "\n";
// Output at the time of writing: 28-01-2024 16:07:01PM
echo date("d-m-Y H:i:sA",strtotime("next minute")) . "\n";
// Output at the time of writing: 28-01-2024 16:06:02PM
echo date("d-m-Y H:i:sA",strtotime("next second")) . "\n";
আউটপুটঃ
28-01-2025 16:06:01PM
28-02-2024 16:06:01PM
29-01-2024 16:06:01PM
28-01-2024 17:06:01PM
28-01-2024 16:07:01PM
28-01-2024 16:06:02PM
28-01-2025 16:06:01PM
28-02-2024 16:06:01PM
29-01-2024 16:06:01PM
28-01-2024 17:06:01PM
28-01-2024 16:07:01PM
28-01-2024 16:06:02PM
date()
ফাংশনে Year format প্যারামিটার দিয়ে আমরা স্বয়ংক্রিয়ভাবে বছরের পরিবর্তন অনুযায়ী হালনাগাদ বছর প্রদর্শন করতে পারি। এ ধরণের ফিচার সাধারণত ওয়েবসাইটের ফুটারে কপিরাইটের বছর প্রদর্শন করতে প্রয়োজন পড়ে। উদাহরণঃ
<?php
// Output at the time of writintg: 2024
echo date("Y");
<?php
// Output at the time of writintg: 2024
echo date("Y");
আউটপুটঃ
2024
2024
time এর ভ্যালিড ফরম্যাট চার্টশীট
টাইম ফরম্যাটের কমন চার্টশীট আরেকবার স্মরণ করতে পারিঃ
Character | Description | Example |
---|---|---|
a | Lowercase Ante meridiem and Post meridiem | am or pm |
A | Uppercase Ante meridiem and Post meridiem | AM or PM |
g | 12-hour format of an hour without leading zeros | 1 through 12 |
G | 24-hour format of an hour without leading zeros | 0 through 23 |
h | 12-hour format of an hour with leading zeros | 01 through 12 |
H | 24-hour format of an hour with leading zeros | 00 through 23 |
i | Minutes with leading zeros | 00 to 59 |
s | Seconds with leading zeros | 00 through 59 |
এই ফরম্যাটকে কেন্দ্র করে কিছু উদাহরণঃ
<?php
// Outptut at the time of writing: 06:57:04
echo date("h:i:s") . "\n";
// Outptut at the time of writing: 06:57:04 pm
echo date("h:i:s a") . "\n";
// Outptut at the time of writing: 06:57:04 PM
echo date("h:i:s A") . "\n";
// Outptut at the time of writing: 18:57:04
echo date("H:i:s") . "\n";
// Outptut at the time of writing: 18:57:04 pm
echo date("H:i:s a") . "\n";
// Outptut at the time of writing: 18:57:04 PM
echo date("H:i:s A") . "\n";
<?php
// Outptut at the time of writing: 06:57:04
echo date("h:i:s") . "\n";
// Outptut at the time of writing: 06:57:04 pm
echo date("h:i:s a") . "\n";
// Outptut at the time of writing: 06:57:04 PM
echo date("h:i:s A") . "\n";
// Outptut at the time of writing: 18:57:04
echo date("H:i:s") . "\n";
// Outptut at the time of writing: 18:57:04 pm
echo date("H:i:s a") . "\n";
// Outptut at the time of writing: 18:57:04 PM
echo date("H:i:s A") . "\n";
আউটপুটঃ
06:57:04
06:57:04 pm
06:57:04 PM
18:57:04
18:57:04 pm
18:57:04 PM
06:57:04
06:57:04 pm
06:57:04 PM
18:57:04
18:57:04 pm
18:57:04 PM
টাইমজোন বের করা
আপনি কোন টাইমজোনে আছেন এই সম্পর্কে তথ্য পেতে পিএইচপির date_default_timezone_get()
বিল্ট-ইন ফাংশন ব্যবহারের দরকার পড়ে। মনে রাখার বিষয় হলঃ
- যদি
date_default_timezone_set()
ফাংশন ব্যবহার করে পূর্বেই কোন নির্দিষ্ট টাইমজোন সেট করা হয়ে থাকে, তাহলে ফাংশনটি থেকে আমরা সেটাই রিটার্ন পাব।
- যদি ini কনফিগারেশন ফাইলে কোন টাইমজোন আগে থেকে সেট করা থাকে, তাহলে আমরা সেটা রিটার্ন পাব।
- অন্যথায়, ডিফল্ট UTC timezone পাব। এক এক করে উদাহরণ দেখিঃ
<?php
// Output: UTC as no timezone has been set
// with the date_default_timezone_set() function
// or in the ini config file.
echo date_default_timezone_get();
<?php
// Output: UTC as no timezone has been set
// with the date_default_timezone_set() function
// or in the ini config file.
echo date_default_timezone_get();
আউটপুটঃ
UTC
UTC
টাইমজোন সেট করা
এবার আমরা বিল্ট-ইন date_default_timezone_set()
ফাংশন ব্যবহার করে আমাদের অঞ্চলের টাইমজোন সেট করে নিব। উদাহরণঃ
<?php
date_default_timezone_set("Asia/Dhaka");
echo date_default_timezone_get(); // Asia/Dhaka
<?php
date_default_timezone_set("Asia/Dhaka");
echo date_default_timezone_get(); // Asia/Dhaka
আউটপুটঃ
Asia/Dhaka
Asia/Dhaka
টাইমজোন সেট করে তারিখ/সময় ফরম্যাটিং
<?php
date_default_timezone_set("Asia/Dhaka");
// Output at the time of writing: 29-01-2024 08:49:44 AM
echo date("d-m-Y h:i:s A");
<?php
date_default_timezone_set("Asia/Dhaka");
// Output at the time of writing: 29-01-2024 08:49:44 AM
echo date("d-m-Y h:i:s A");
আউটপুটঃ
29-01-2024 08:49:44 AM
29-01-2024 08:49:44 AM
পছন্দমতো (Custom) সময়/তারিখ তৈরি
অনেক সময় আমাদের নিজেদের পছন্দমতো কাস্টম তারিখ এবং সময় তৈরি করার দরকার পড়ে। যেখানে আমরা datetime এর ফরম্যাটে নিজস্ব ইনপুট বা আর্গুমেন্ট পাস করে একটা সঠিক তারিখ এবং সময় প্রত্যাশা করি। পিএইচপির বিল্ট-ইন mktime()
ফাংশন ব্যবহার করে আমরা সেটা করতে পারি। কারণ, এই ফাংশনের প্রথম প্যারামিটারে ঘন্টা, দ্বিতীয় প্যারামিটারে মিনিট, তৃতীয় প্যারামিটারে সেকেন্ড, চতুর্থ প্যারামিটারে মাস, পঞ্চম প্যারামিটারে দিন এবং ষষ্ঠ প্যারামিটারে বছর — মোটকথা পুরোপুরি কাস্টমভাবে সময় ও তারিখ তৈরি করার প্রক্রিয়া — ব্যবহার করে আমরা তারিখ ও সময়টা তৈরি করতে পারি।
Syntax
mktime(hour, minute, second, month, day, year)
mktime(hour, minute, second, month, day, year)
উদাহরণঃ
<?php
// Output: 1706517900
echo mktime(8, 45, 0, 1, 29, 2024);
<?php
// Output: 1706517900
echo mktime(8, 45, 0, 1, 29, 2024);
আউটপুটঃ
1706517900
1706517900
আউটপুট দেখেই আমরা বুঝতে পারছি ফাংশনটি সেকেন্ডের গণনায় ইন্টিজার টাইমস্টাম্প রিটার্ন করে। এখন একে আমরা ফরম্যাট করতে পারি মনের মতো। উদাহরণঃ
<?php
// Output: 21-02-2024
echo date("d-m-Y", mktime(9, 15, 0, 2, 21, 2024));
<?php
// Output: 21-02-2024
echo date("d-m-Y", mktime(9, 15, 0, 2, 21, 2024));
আউটপুটঃ
21-02-2024
21-02-2024
তারিখের সাথে সাথে সময়ও দেখতে চাইলে আমরা সেভাবে ফরম্যাট করতে পারি। উদাহরণঃ
<?php
// Output: 29-01-2024 09:15:00
echo date("d-m-Y H:i:s", mktime(9, 15, 0, 1, 29, 2024));
<?php
// Output: 29-01-2024 09:15:00
echo date("d-m-Y H:i:s", mktime(9, 15, 0, 1, 29, 2024));
আউটপুটঃ
29-01-2024 09:15:00
29-01-2024 09:15:00
নির্ধারিত রেঞ্জের ভেতর তারিখ/সময় প্রদর্শন
আমরা ইতিপূর্বে জেনেছি strtotime()
ফাংশনটির সেকেন্ড প্যারামিটারে baseTimestamp প্রদান করার সুযোগ আছে। সেটা ব্যবহার করে আমরা একটি নির্ধারিত startdate থেকে নিয়ে নির্ধারিত একটি enddate তথা একটি পূর্বনির্ধারিত রেঞ্জের ভেতরকার সময়/তারিখ ধারাবাহিকভাবে প্রদর্শন করতে পারি। উদাহরণঃ
<?php
// Output: 1706810400 converts to 02-02-2024
$startdate = strtotime("Friday");
// Output: 1707415200 converts to 09-02-2024
$enddate = strtotime("+1 week", $startdate);
echo $startdate . "\n" . $enddate . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n";
while ($startdate < $enddate) {
echo date("M d Y", $startdate) . "\n";
// baseTimestamp provided to the second parameter
// of strtotime() function
$startdate = strtotime("+1 day", $startdate);
}
<?php
// Output: 1706810400 converts to 02-02-2024
$startdate = strtotime("Friday");
// Output: 1707415200 converts to 09-02-2024
$enddate = strtotime("+1 week", $startdate);
echo $startdate . "\n" . $enddate . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n";
while ($startdate < $enddate) {
echo date("M d Y", $startdate) . "\n";
// baseTimestamp provided to the second parameter
// of strtotime() function
$startdate = strtotime("+1 day", $startdate);
}
আউটপুটঃ
1706810400
1707415200
02-02-2024
09-02-2024
Feb 02 2024
Feb 03 2024
Feb 04 2024
Feb 05 2024
Feb 06 2024
Feb 07 2024
Feb 08 2024
1706810400
1707415200
02-02-2024
09-02-2024
Feb 02 2024
Feb 03 2024
Feb 04 2024
Feb 05 2024
Feb 06 2024
Feb 07 2024
Feb 08 2024
সপ্তাহের রেঞ্জ প্রদর্শন, যেমনঃ
<?php
// Output: 1706918400 converts to 03-02-2024
$startdate = strtotime("Saturday");
// Output: 1710547200 converts to 16-03-2024
$enddate = strtotime("+6 weeks", $startdate);
echo $startdate . "\n" . $enddate . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n";
while ($startdate < $enddate) {
echo date("M d Y", $startdate) . "\n";
$startdate = strtotime("+1 week", $startdate);
}
<?php
// Output: 1706918400 converts to 03-02-2024
$startdate = strtotime("Saturday");
// Output: 1710547200 converts to 16-03-2024
$enddate = strtotime("+6 weeks", $startdate);
echo $startdate . "\n" . $enddate . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n";
while ($startdate < $enddate) {
echo date("M d Y", $startdate) . "\n";
$startdate = strtotime("+1 week", $startdate);
}
আউটপুটঃ
1706918400
1710547200
03-02-2024
16-03-2024
Feb 03 2024
Feb 10 2024
Feb 17 2024
Feb 24 2024
Mar 02 2024
Mar 09 2024
1706918400
1710547200
03-02-2024
16-03-2024
Feb 03 2024
Feb 10 2024
Feb 17 2024
Feb 24 2024
Mar 02 2024
Mar 09 2024
দুটি তারিখের ভেতর দিনের পার্থক্য পরিমাপ
নির্ধারিত দুটি তারিখের ভেতরে কত দিনের পার্থক্য আছে তা জানার প্রয়োজন হলে আমরা নিন্মোক্ত উপায়ে তা বের করতে পারি। যেমনঃ
// Output: 1708473600 converts to 21-02-2024
$startdate = strtotime("2024-02-21");
// Output: 1711584000 converts to 28-03-2024
$enddate = strtotime("2024-03-28");
// Output: 3110400 converts to 06-02-1970. Why?
// Remember Unix epoch time is 01-01-1970?
// So the counting starts from 00:00:00 01-01-1970
// Since the difference between two dates is 36 Days
// So the output is one month and 6 days of another month.
// Try to understand by doing simple math
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n" . date("d-m-Y", $diff) . "\n";
echo "Difference between two dates: " . floor($diff / (60 * 60 * 24)) . " Days";
// Output: 1708473600 converts to 21-02-2024
$startdate = strtotime("2024-02-21");
// Output: 1711584000 converts to 28-03-2024
$enddate = strtotime("2024-03-28");
// Output: 3110400 converts to 06-02-1970. Why?
// Remember Unix epoch time is 01-01-1970?
// So the counting starts from 00:00:00 01-01-1970
// Since the difference between two dates is 36 Days
// So the output is one month and 6 days of another month.
// Try to understand by doing simple math
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n" . date("d-m-Y", $diff) . "\n";
echo "Difference between two dates: " . floor($diff / (60 * 60 * 24)) . " Days";
আউটপুটঃ
1708473600
1711584000
3110400
21-02-2024
28-03-2024
06-02-1970
Difference between two dates: 36 Days
1708473600
1711584000
3110400
21-02-2024
28-03-2024
06-02-1970
Difference between two dates: 36 Days
দুটি তারিখের ভেতর ঘন্টার পার্থক্য পরিমাপ
আবার, দুটি নির্ধারিত তারিখের ভেতরে কত ঘন্টার পার্থক্য আছে তা জানার জন্য আমরা নিন্মোক্ত উপায় ব্যবহার করতে পারি। যেমনঃ
<?php
// Output: 1708516800 converts to 21-02-2024
$startdate = strtotime("2024-02-21 12:00:00");
// Output: 1708624800 converts to 22-02-2024
$enddate = strtotime("2024-02-22 18:00:00");
// Output: 108000 converts to 02-01-1970. Why?
// Find previous comment
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n" . date("d-m-Y", $diff) . "\n";
echo "Difference between two dates: " . floor($diff / (60 * 60)) . " Hours";
<?php
// Output: 1708516800 converts to 21-02-2024
$startdate = strtotime("2024-02-21 12:00:00");
// Output: 1708624800 converts to 22-02-2024
$enddate = strtotime("2024-02-22 18:00:00");
// Output: 108000 converts to 02-01-1970. Why?
// Find previous comment
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y", $startdate) . "\n" . date("d-m-Y", $enddate) . "\n" . date("d-m-Y", $diff) . "\n";
echo "Difference between two dates: " . floor($diff / (60 * 60)) . " Hours";
আউটপুটঃ
1708516800
1708624800
108000
21-02-2024
22-02-2024
02-01-1970
Difference between two dates: 30 Hours
1708516800
1708624800
108000
21-02-2024
22-02-2024
02-01-1970
Difference between two dates: 30 Hours
দুটি তারিখের মিনিটের পার্থক্য পরিমাপ
একইরকমভাবে, দুটি নির্ধারিত তারিখের ভেতরে কত মিনিটের পার্থক্য আছে তা পরিমাপ করতে আমরা নিন্মোক্ত উপায় ব্যবহার করতে পারি। যেমনঃ
<?php
// Output: 1708516800 converts to 21-02-2024 12:00:00
$startdate = strtotime("2024-02-21 12:00:00");
// Output: 1708605000 converts to 22-02-2024 12:30:00
$enddate = strtotime("2024-02-22 12:30:00");
// Output: 88200 converts to 02-01-1970 00:30:00. Why?
// Find previous comment
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y H:i:s", $startdate) . "\n" . date("d-m-Y H:i:s", $enddate) . "\n" . date("d-m-Y H:i:s", $diff) . "\n";
echo "Difference between two dates: " . floor($diff / (60)) . " Minutes";
<?php
// Output: 1708516800 converts to 21-02-2024 12:00:00
$startdate = strtotime("2024-02-21 12:00:00");
// Output: 1708605000 converts to 22-02-2024 12:30:00
$enddate = strtotime("2024-02-22 12:30:00");
// Output: 88200 converts to 02-01-1970 00:30:00. Why?
// Find previous comment
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y H:i:s", $startdate) . "\n" . date("d-m-Y H:i:s", $enddate) . "\n" . date("d-m-Y H:i:s", $diff) . "\n";
echo "Difference between two dates: " . floor($diff / (60)) . " Minutes";
আউটপুটঃ
1708516800
1708605000
88200
21-02-2024 12:00:00
22-02-2024 12:30:00
02-01-1970 00:30:00
Difference between two dates: 1470 Minutes
1708516800
1708605000
88200
21-02-2024 12:00:00
22-02-2024 12:30:00
02-01-1970 00:30:00
Difference between two dates: 1470 Minutes
দুটি তারিখের সেকেন্ডের পার্থক্য পরিমাপ
<?php
// Output: 1708516800 converts to 21-02-2024 12:00:00
$startdate = strtotime("2024-02-21 12:00:00");
// Output: 1708603230 converts to 22-02-2024 12:00:30
$enddate = strtotime("2024-02-22 12:00:30");
// Output: 86430 converts to 02-01-1970 00:00:30. Why?
// Find previous comment
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y H:i:s", $startdate) . "\n" . date("d-m-Y H:i:s", $enddate) . "\n" . date("d-m-Y H:i:s", $diff) . "\n";
echo "Difference between two dates: " . floor($diff) . " Seconds";
<?php
// Output: 1708516800 converts to 21-02-2024 12:00:00
$startdate = strtotime("2024-02-21 12:00:00");
// Output: 1708603230 converts to 22-02-2024 12:00:30
$enddate = strtotime("2024-02-22 12:00:30");
// Output: 86430 converts to 02-01-1970 00:00:30. Why?
// Find previous comment
$diff = $enddate - $startdate;
echo $startdate . "\n" . $enddate . "\n" . $diff . "\n";
echo date("d-m-Y H:i:s", $startdate) . "\n" . date("d-m-Y H:i:s", $enddate) . "\n" . date("d-m-Y H:i:s", $diff) . "\n";
echo "Difference between two dates: " . floor($diff) . " Seconds";
আউটপুটঃ
1708516800
1708603230
86430
21-02-2024 12:00:00
22-02-2024 12:00:30
02-01-1970 00:00:30
Difference between two dates: 86430 Seconds
1708516800
1708603230
86430
21-02-2024 12:00:00
22-02-2024 12:00:30
02-01-1970 00:00:30
Difference between two dates: 86430 Seconds
ক্লাস ম্যাটেরিয়াল সম্পন্ন। ভবিষ্যতে প্রয়োজন অনুসারে আরো কন্টেন্ট এবং ম্যাটেরিয়াল যোগ হতে পারে।