Validate Date PHP



For date validation in PHP Try this and enjoy :)

<?php
function isValid($date){
$date_format = 'd F Y';
$input =$date;  //say '11 February 2013';

$input = trim($input);
$time = strtotime($input);

$is_valid = date($date_format, $time) == $input;

return $is_valid ? 'yes' : 'no';

}

Comments

Popular posts from this blog

Sort Products by popularity count in Magento

Safe name of a file by php

Get width height of image using Varien-image class in Magento