本文整理汇总了PHP中JSession::clear方法的典型用法代码示例。如果您正苦于以下问题:PHP JSession::clear方法的具体用法?PHP JSession::clear怎么用?PHP JSession::clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSession
的用法示例。
在下文中一共展示了JSession::clear方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onContentAfterSave
/**
* Sends message if possible
*
* @param type $context
* @param type $article
* @param type $isNew
* @return type
*/
public function onContentAfterSave($context, &$article, $isNew)
{
if (0 !== strpos($context, 'com_content')) {
return;
}
$message = $this->session->get('asar.message');
if (!empty($message)) {
$this->app->enqueueMessage($message);
$this->session->clear('asar.message');
}
}
示例2: clearGroup
/**
* Clear group in session
* @param string $group
* @return mixed
*/
public function clearGroup($group = 'default')
{
return $this->_session->clear($group, $this->_namespace);
}
示例3: remove
/**
* Remove an item from the cache by its unique key
*
* @param string $key The unique cache key of the item to remove
* @param string $group The cache data group
*
* @return static Return self to support chaining
*/
public function remove($key, $group = null)
{
$this->session->clear('cache.' . $group . '.' . $key);
return $this;
}