arcanisgk/date-validator

Date Validator: is a library that allows any development to validate if a string is a datetime, date or time format or validate custom format

v1.0.1 2022-11-15 14:45 UTC

This package is auto-updated.

Last update: 2024-05-15 17:49:32 UTC


README

Validation of format is right for given datetime,date or time string variable.

Acronym: [Date-Validator].

Name: Date-Validator.

Dependencies: Stand Alone / PHP v7.4.

What does [Date-Validator] do?

is a very simple PHP [Date-Validator] implementation that allows you to easily validate if the PHP variable passed is a string with valid datetime, date, time format.

Why use [Date-Validator]?

Developers need the ability to validate if variable meaning a datetime, date or time have a right format, this helps to validate some format dependencies that must have a datetime, date or time string.

Help to improve [Date-Validator]?

if you want to collaborate with the development of the library; You can express your ideas or report any situation related to this in: https://github.com/arcanisgk/Date-Validator/issues

[Date-Validator] Configuration:

None necessary.

[Date-Validator] Installation:

composer require arcanisgk/date-validator

[Date-Validator] Usage:

Instance of Class:

use IcarosNet\DateValidator\DateValidator;
require __DIR__.'\..\vendor\autoload.php';
$date_validator = new DateValidator();

Implementation of Class:

if ($date_validator->ValidateDate('10/10/1999 20:40')) {
    echo 'Correct date string';
}

if ($date_validator->ValidateDate('XXX10/10/1999 20:40')) {
     echo 'incorrect date string';
}

if($date_validator->addFormat('d--m--Y H%i')->ValidateDate('09--09--2010 20%40')){
     echo 'Correct new date format string using % separator';
}

avoid standard and use only custom:

if ($date_validator->ValidateCustomFormatAndDate('09--09--2010','d--m--Y')) {
    echo 'Correct date string';
}

Contributors