Prueba con esto
Código PHP:
Ver original<?php
$total_days = 0;
$startDate = new DateTime('2018-11-01');
$endDate = new DateTime('2018-12-11');
while($startDate->getTimestamp() <= $endDate->getTimestamp()){
if($startDate->format('l')== 'Saturday' || $startDate->format('l')== 'Sunday'){
echo $startDate->format('Y-m-d (D)')."<br/>";
}else{
$total_days ++;
}
$startDate->modify("+1 days");
}
echo '<br><br>Total de dias sin fin de semana '.$total_days;
Ejemplo planteado por @abimaelrc en este hilo
http://www.forosdelweb.com/f18/cuant...7/#post3727056