For example I have a date/time range which doesn't have year, and which needs to be converted to timestamp like below,
<?php
$dateStart = '11-28 00:00:00';
$dateEnd = '11-28 23:59:59';
?>
Now I want to get the current date and time of the user and check if it falls inside the given date range or not. How do I do this ?