| Conditions | 8 |
| Paths | 9 |
| Total Lines | 26 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | private function setExpires($ttl): void |
||
| 35 | { |
||
| 36 | //Срок действия cookie истечет с окончанием сессии (при закрытии браузера). |
||
| 37 | if ($ttl === 0 || $ttl === false || strtolower((string)$ttl) === 'session') { |
||
| 38 | $this->expires = 0; |
||
| 39 | return; |
||
| 40 | } |
||
| 41 | |||
| 42 | // Устанавливаем время жизни на год |
||
| 43 | if ($ttl === true) { |
||
| 44 | $ttl = 60 * 60 * 24 * 365; |
||
| 45 | } |
||
| 46 | |||
| 47 | // Если число то прибавляем значение к метке времени timestamp |
||
| 48 | // Для установки сессионной куки надо использовать FALSE |
||
| 49 | if (is_numeric($ttl)) { |
||
| 50 | $this->expires = $this->currentTimestamp + (int)$ttl; |
||
| 51 | return; |
||
| 52 | } |
||
| 53 | |||
| 54 | if (is_string($ttl)) { |
||
| 55 | if (false !== $returnTtl = strtotime($ttl, $this->currentTimestamp)) { |
||
| 56 | $this->expires = $returnTtl; |
||
| 57 | return; |
||
| 58 | } |
||
| 59 | throw new Exception(sprintf('strtotime() failed to convert string "%s" to timestamp', $ttl)); |
||
| 60 | } |
||
| 70 | } |