Ldap/Ldif/Encoder.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- category
- Zend
- copyright
- Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- license
-
New BSD License
- package
- Zend_Ldap
- subpackage
- Ldif
- version
- $Id: Encoder.php 23775 2011-03-01 17:25:24Z ralph $
\Zend_Ldap_Ldif_Encoder
Zend_Ldap_Ldif_Encoder provides methods to encode and decode LDAP data into/from LDIF.
- category
- Zend
- copyright
- Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- license
-
New BSD License
- package
- Zend_Ldap
- subpackage
- Ldif
Properties



array
$_options= 'array'
Additional options used during encoding
Default valuearray
Details
- Type
- array
Methods



_decode(
string $string
)
:
array
Decodes the string $string into an array of LDIF items
Parameters
Name |
Type |
Description |
$string |
string |
|
Returns



_encode(
mixed $value
)
:
string
Recursive driver which determines the type of value to be encoded
and then dispatches to the appropriate method.
Parameters
Name |
Type |
Description |
$value |
mixed |
The value to be encoded |
Returns
Type |
Description |
string |
Encoded value |



_pushAttribute(
array $attribute, array $entry
)
:
void
Pushes a decoded attribute to the stack
Parameters
Name |
Type |
Description |
$attribute |
array |
|
$entry |
array |
|



decode(
string $string
)
:
array
staticDecodes the string $string into an array of LDIF items
Parameters
Name |
Type |
Description |
$string |
string |
|
Returns



encode(
mixed $value, array $options
=
array
)
:
string
staticEncode $value into a LDIF representation
Parameters
Name |
Type |
Description |
$value |
mixed |
The value to be encoded |
$options |
array |
Additional options used during encoding |
Returns
Type |
Description |
string |
The encoded value |