Difference between revisions of "PHPLights/Documentation/liblights/LsStorage"
From Linuxnetworks
< PHPLights | Documentation | liblights
(initial) |
(full skeleton) |
||
| Line 3: | Line 3: | ||
abstract class LsStorage | abstract class LsStorage | ||
{ | { | ||
| − | const Alpha = ' | + | const Alpha = '<regex>'; |
| − | const AlphaUTF8 = ' | + | const AlphaUTF8 = '<regex>'; |
| − | const ANum = ' | + | const ANum = '<regex>'; |
| − | const ANumUTF8 = ' | + | const ANumUTF8 = '<regex>'; |
| − | const Any = ' | + | const Any = '<regex>'; |
| − | const Decimal = ' | + | const Decimal = '<regex>'; |
| − | const EMailAddr = ' | + | const EMailAddr = '<regex>'; |
| − | const Float = ' | + | const Float = '<regex>'; |
| − | const Int = ' | + | const Int = '<regex>'; |
| − | const Path = ' | + | const Path = '<regex>'; |
| + | const Url = '<regex>'; | ||
protected function delEntry( &$path, &$val ) | protected function delEntry( &$path, &$val ) | ||
Latest revision as of 16:04, 7 October 2007
Contents
Synopsis
abstract class LsStorage
{
const Alpha = '<regex>';
const AlphaUTF8 = '<regex>';
const ANum = '<regex>';
const ANumUTF8 = '<regex>';
const Any = '<regex>';
const Decimal = '<regex>';
const EMailAddr = '<regex>';
const Float = '<regex>';
const Int = '<regex>';
const Path = '<regex>';
const Url = '<regex>';
protected function delEntry( &$path, &$val )
protected function getEntry( &$path, &$val, &$default )
protected function hasEntry( &$path, &$val )
protected function setEntry( &$path, &$val, &$value )
}
Description
Protected functions
delEntry()
protected function delEntry( &$path, &$val )
getEntry()
protected function getEntry( &$path, &$val, &$default )
hasEntry()
protected function hasEntry( &$path, &$val )
setEntry()
protected function setEntry( &$path, &$val, &$value )
Back to Overview