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

From Linuxnetworks
Jump to: navigation, search
(initial)
 
(update)
 
Line 3: Line 3:
 
  class LsStorageHolder
 
  class LsStorageHolder
 
   extends [[PHPLights/Documentation/liblights/LsStorage|LsStorage]]
 
   extends [[PHPLights/Documentation/liblights/LsStorage|LsStorage]]
   implements [[PHPLights/Documentation/Interfaces/LsStorageIface|LsStorageIface]], [[PHPLights/Documentation/Interfaces/LsSingletonIface|LsSingletonIface]]
+
   implements [[PHPLights/Documentation/Interfaces/LsStorageIface|LsStorageIface]]
 
  {
 
  {
 
   protected $mem = array();
 
   protected $mem = array();
Line 9: Line 9:
 
   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 function has( $path )
 
   public function has( $path )
 
   public function set( $path, $value )
 
   public function set( $path, $value )
Line 26: Line 25:
  
 
  public function get( $path, $default = NULL, $regex = NULL )
 
  public function get( $path, $default = NULL, $regex = NULL )
 
=== getInstance() ===
 
 
public static function getInstance( array $param = array() )
 
  
 
=== has() ===
 
=== has() ===

Latest revision as of 16:21, 6 October 2007

Synopsis

class LsStorageHolder
  extends LsStorage
  implements LsStorageIface
{
  protected $mem = array();

  public function del( $path )
  public function get( $path, $default = NULL, $regex = NULL )
  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 )

has()

public function has( $path )

set()

public function set( $path, $value )

setByRef()

public function setByRef( $path, &$value )



Back to Overview