NullStorageExpirable::setWithExpireIfNotExists

public NullStorageExpirable::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.

Overrides KeyValueStoreExpirableInterface::setWithExpireIfNotExists

File

core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php, line 115

Class

NullStorageExpirable
Defines a null key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function setWithExpireIfNotExists($key, $value, $expire) {
}
doc_Drupal
2016-10-29 09:32:22
Comments
Leave a Comment

Please login to continue.