fix: get rid of (some) PHP deprecation warnings

- CakeResponse.php strotime() and preg_split() warnings
This commit is contained in:
Jan Pešek 2024-01-19 14:43:05 +01:00 committed by Kamil Wylegala
parent be94fb8ea9
commit a83e9c77bb
2 changed files with 10 additions and 2 deletions

View file

@ -55,6 +55,10 @@ It means that composer will look at `master` branch of repository configured und
## Changelog
### 2024-01-19
- `strotime()` and `preg_split()` in CakeResponse deprecation warning fixes (passing null)
### 2024-01-11
- `preg_replace` deprecation warning fixes (passing null instead of `string`)

View file

@ -1164,7 +1164,7 @@ class CakeResponse {
$ifNoneMatchHeader = $request->header('If-None-Match');
$etags = array();
if (is_string($ifNoneMatchHeader)) {
$etags = preg_split('/\s*,\s*/', $ifNoneMatchHeader, null, PREG_SPLIT_NO_EMPTY);
$etags = preg_split('/\s*,\s*/', $ifNoneMatchHeader, 0, PREG_SPLIT_NO_EMPTY);
}
$modifiedSince = $request->header('If-Modified-Since');
$checks = array();
@ -1172,7 +1172,11 @@ class CakeResponse {
$checks[] = in_array('*', $etags) || in_array($responseTag, $etags);
}
if ($modifiedSince) {
$checks[] = strtotime($this->modified()) === strtotime($modifiedSince);
if ($this->modified() === null) {
$checks[] = strtotime($modifiedSince) === false;
} else {
$checks[] = strtotime($this->modified()) === strtotime($modifiedSince);
}
}
if (empty($checks)) {
return false;