Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpire()
  2. 9 core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpire()

Saves a value for a given key with a time to live.

Parameters

string $key: The key of the data to store.

mixed $value: The data to store.

int $expire: The time to live for items, in seconds.

1 method overrides KeyValueStoreExpirableInterface::setWithExpire()
NullStorageExpirable::setWithExpire in core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
Saves a value for a given key with a time to live.

File

core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php, line 20

Class

KeyValueStoreExpirableInterface
Defines the interface for expiring data in a key/value store.

Namespace

Drupal\Core\KeyValueStore

Code

public function setWithExpire($key, $value, $expire);