$notModified = true;
break;
} } } // Only do If-Modified-Since date comparison when If-None-Match is not present as per https://tools.ietf.org/html/rfc7232#section-3.3.
elseif ($modifiedSince &&
$lastModified) { $notModified =
strtotime($modifiedSince) >=
strtotime($lastModified);
} if ($notModified) { $this->
setNotModified();
} return $notModified;
} /**
* Is response invalid?
*
* @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
*
* @final
*/