Zend Framework
1.12
|
Static Public Member Functions | |
static | decode ($string) |
Decodes the string $string into an array of LDIF items. | |
static | encode ($value, array $options=array()) |
Encode $value into a LDIF representation. | |
Protected Member Functions | |
__construct (array $options=array()) | |
Constructor. | |
_decode ($string) | |
Decodes the string $string into an array of LDIF items. | |
_pushAttribute (array $attribute, array &$entry) | |
Pushes a decoded attribute to the stack. | |
_encode ($value) | |
Recursive driver which determines the type of value to be encoded and then dispatches to the appropriate method. | |
_encodeString ($string, &$base64=null) | |
Encodes $string according to RFC2849. | |
_encodeAttribute ($name, $value) | |
Encodes an attribute with $name and $value according to RFC2849. | |
_encodeAttributes (array $attributes) | |
Encodes a collection of attributes according to RFC2849. | |
Protected Attributes | |
$_options | |
$_versionWritten = false | |
|
protected |
Constructor.
array | $options | Additional options used during encoding |
|
protected |
Decodes the string $string into an array of LDIF items.
string | $string |
|
protected |
Recursive driver which determines the type of value to be encoded and then dispatches to the appropriate method.
mixed | $value | The value to be encoded |
|
protected |
Encodes an attribute with $name and $value according to RFC2849.
|
protected |
Encodes a collection of attributes according to RFC2849.
|
protected |
Encodes $string according to RFC2849.
|
protected |
Pushes a decoded attribute to the stack.
array | $attribute | |
array | $entry |
|
static |
Decodes the string $string into an array of LDIF items.
string | $string |
|
static |
Encode $value into a LDIF representation.
mixed | $value | The value to be encoded |
array | $options | Additional options used during encoding |
|
protected |
|
protected |