W3cubDocs

/Drupal 8

public function KeyValueStoreExpirableInterface::setWithExpireIfNotExists

public KeyValueStoreExpirableInterface::setWithExpireIfNotExists($key, $value, $expire)

Sets a value for a given key with a time to live if it does not yet exist.

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.

Return value

bool TRUE if the data was set, or FALSE if it already existed.

File

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

Class

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

Namespace

Drupal\Core\KeyValueStore

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!KeyValueStore!KeyValueStoreExpirableInterface.php/function/KeyValueStoreExpirableInterface::setWithExpireIfNotExists/8.1.x