Difference between revisions of "PHPLights/Documentation/liblights/LsStorageHolder"
From Linuxnetworks
< PHPLights | Documentation | liblights
(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 | + | 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 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 ) | ||
| − | |||
| − | |||
| − | |||
| − | |||
=== has() === | === has() === | ||
Latest revision as of 16:21, 6 October 2007
Contents
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