$month
, int $day
, int $year
)
Checks the validity of the date formed by the arguments. A date is considered valid if each parameter is properly defined.
Anonymous user / 52.14.6.145 Log In Register |
?
Wallet:
3.00
Daily Credits:
1.20 / 1.20
|
This is your credit balance. Even if you are an anonymous user, you are given some credits to spend. Every IP address has its own account and it is provided with free credits that can be used to pay for Online Domain Tools services. Moreover, credit balance is reset every day. This is why we call them Daily Credits. Registered users have higher Daily Credits amounts and can even increase them by purchasing subscriptions.
Besides Daily Credits, all accounts, including IP address accounts of anonymous users, have their credit Wallet. Wallet credits are not reset on a daily basis, but they are only spent when a user has not enough Daily Credits. Registered users can buy credits to their wallets. All IP address accounts are created with an initial Wallet balance of 3.00. Once IP address account spends credits from its Wallet, it can not be charged again. This should allow new users to try most of Online Domain Tools services without registration.
$month
, int $day
, int $year
)
Checks the validity of the date formed by the arguments. A date is considered valid if each parameter is properly defined.
The month is between 1 and 12 inclusive.
The day is within the allowed number of days for the given
month
. Leap year
s
are taken into consideration.
The year is between 1 and 32767 inclusive.
Returns TRUE
if the date given is valid; otherwise returns
FALSE
.
Example #1 checkdate() example
<?php
var_dump(checkdate(12, 31, 2000));
var_dump(checkdate(2, 29, 2001));
?>
The above example will output:
bool(true) bool(false)