PHP Class JSONDict, gitblog

Inheritance: implements ArrayAccess, implements Countable
Afficher le fichier Open project: rsms/gitblog

Méthodes publiques

Свойство Type Description
$cache
$file
$skeleton_file
$storage

Méthodes publiques

Méthode Description
__construct ( $name_or_path, $is_path = false, $skeleton_file = null )
__toString ( )
count ( )
get ( $key, $default = null, $sep = '/' ) Higher level GET operation able to read deep values, which keys are separated by $sep.
offsetExists ( $k )
offsetGet ( $k )
offsetSet ( $k, $v )
offsetUnset ( $k )
put ( $key, $value, $sep = '/' ) Higher level PUT operation able to set deep values, which keys are separated by $sep.
storage ( ) Retrieve the underlying JSONStore storage
toJSON ( )

Method Details

__construct() public méthode

public __construct ( $name_or_path, $is_path = false, $skeleton_file = null )

__toString() public méthode

public __toString ( )

count() public méthode

public count ( )

get() public méthode

Higher level GET operation able to read deep values, which keys are separated by $sep.
public get ( $key, $default = null, $sep = '/' )

offsetExists() public méthode

public offsetExists ( $k )

offsetGet() public méthode

public offsetGet ( $k )

offsetSet() public méthode

public offsetSet ( $k, $v )

offsetUnset() public méthode

public offsetUnset ( $k )

put() public méthode

Higher level PUT operation able to set deep values, which keys are separated by $sep.
public put ( $key, $value, $sep = '/' )

storage() public méthode

Retrieve the underlying JSONStore storage
public storage ( )

toJSON() public méthode

public toJSON ( )

Property Details

$cache public_oe property

public $cache

$file public_oe property

public $file

$skeleton_file public_oe property

public $skeleton_file

$storage public_oe property

public $storage