Difference between revisions of "PHPLights/Documentation/liblights/LsStorageSessionNative"

From Linuxnetworks
Jump to: navigation, search
(initial)
 
(update)
 
Line 7: Line 7:
 
   public function del( $path )
 
   public function del( $path )
 
   public function get( $path, $default = NULL, $regex = NULL )
 
   public function get( $path, $default = NULL, $regex = NULL )
   public static function getInstance( array $param = array() )
+
   public static function getInstance()
 
   public function has( $path )
 
   public function has( $path )
 
   public function set( $path, $value )
 
   public function set( $path, $value )

Latest revision as of 16:30, 6 October 2007

Synopsis

class LsStorageSessionNative
  extends LsStorage
  implements LsStorageIface, LsSingletonIface
{
  public function del( $path )
  public function get( $path, $default = NULL, $regex = NULL )
  public static function getInstance()
  public function has( $path )
  public function set( $path, $value )
  public function setByRef( $path, &$value )
}

Description

Public functions

del()

public function del( $path )

get()

public function get( $path, $default = NULL, $regex = NULL )

getInstance()

public static function getInstance( array $param = array() )

has()

public function has( $path )

set()

public function set( $path, $value )

setByRef()

public function setByRef( $path, &$value )



Back to Overview