scache_shreplace

Description

bool scache_shreplace(resource session, string path, mixed value)
bool $SCacheConnection->shreplace(string path, mixed value)

scache_shreplace is operationally equal to session spesific scache_replace but unlike it, scache_shreplace operates on shared storage that is common and accessible for all clients. Shared storage is for operating data common to all clients and for inter-client communication.

scache_shreplace sets value to given path on session-local storage only if it path previously exists and is not empty. Previous value will be replaced. If previous value was subtree, subtree is destroyed.

Functions scache_shset, scache_shadd and scache_shreplace are all for setting session values. Differencies are :

Parameters

session
Session resource returned from scache_open, scache_reset or scache_connect
path
Slash (/) separated path on backend's session tree. Path parameter is not binary safe.
value
Value to be stored. Must be serialize()able.

Return values

TRUE on success, FALSE on failure.

In case of failure, error codes resolvable by scache_lasterr is one of below :

Examples

<?php

/* get connection */
$session = scache_shreset('MyEasilyGuessableSecret');

scache_shset($session, 'my/path', 'oldvalue');
if (scache_shexists($session, 'my/path') &&
    scache_shreplace($session, 'my/path', 'value')) {

    echo "Mom! I did replace it!\n";
}

if (!scache_shreplace($session, 'my/notexisting/path', 'another value')) {

    echo "It did not succeed any more..\n";
}
?>