Skip to content

Instantly share code, notes, and snippets.

View wintersun1993's full-sized avatar

Boyan Nedyalkov wintersun1993

  • Sofia
View GitHub Profile
<?php
$dateOne=$_GET['dateOne'];
$dateTwo=$_GET['dateTwo'];
$holidays=$_GET['holidays'];
$holidayarr=preg_split('/[\s]+/', $holidays);
$string='';
$flag=false;
while (strtotime($dateOne) <= strtotime($dateTwo)) {
if(date('w', strtotime($dateOne)) != 0 &&date('w', strtotime($dateOne))!=6 && !in_array("$dateOne",$holidayarr) ) {
$string.="<li>".date('d',strtotime($dateOne)).'-'.date('m',strtotime($dateOne)).'-'.date('Y',strtotime($dateOne))."</li>";