mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-03-17 06:59:51 +00:00
Clarify docs.
This commit is contained in:
parent
abe74adf8a
commit
028795eb2e
1 changed files with 4 additions and 5 deletions
|
@ -1083,12 +1083,11 @@ class CakeResponse {
|
||||||
* is marked as so accordingly so the client can be informed of that.
|
* is marked as so accordingly so the client can be informed of that.
|
||||||
*
|
*
|
||||||
* In order to mark a response as not modified, you need to set at least
|
* In order to mark a response as not modified, you need to set at least
|
||||||
* the Last-Modified response header or a response etag to be compared
|
* the Last-Modified etag response header before calling this method. Otherwise
|
||||||
* with the request itself
|
* a comparison will not be possible.
|
||||||
*
|
*
|
||||||
* @return boolean whether the response was marked as not modified or
|
* @return boolean whether the response was marked as not modified or not.
|
||||||
* not
|
*/
|
||||||
**/
|
|
||||||
public function checkNotModified(CakeRequest $request) {
|
public function checkNotModified(CakeRequest $request) {
|
||||||
$etags = preg_split('/\s*,\s*/', $request->header('If-None-Match'), null, PREG_SPLIT_NO_EMPTY);
|
$etags = preg_split('/\s*,\s*/', $request->header('If-None-Match'), null, PREG_SPLIT_NO_EMPTY);
|
||||||
$modifiedSince = $request->header('If-Modified-Since');
|
$modifiedSince = $request->header('If-Modified-Since');
|
||||||
|
|
Loading…
Add table
Reference in a new issue