PHP Data Type
Modeling and manipulating data types-
Bit Array is meant to manipulate compact array of bit values. These values are represented as booleans, where true indicates that the bit is on (1) and false indicates the bit is off (0). The class can manipulate bit arrays that are stored internally as strings.The bit arrays may have variable length that is specified when an object of the ...
-
The content of a LDIF file are parsed and split into one or more blocks with different sections of directory definition data. Each block is parsed into a bi-dimensional array for further processing for an LDAP server access application.Requirements: PHP 4.0 or higher
-
Magic Array is an enahcement of the ArrayObject class, in order to treat class objects as arrays.Magic Array provides functionality like allowing array keys to be case insensitive and can remove array entries by entry value.Requirements: PHP 5.0 or higher
-
Reflection is used to traverse the sub-class list of variables, functions and constants, which get stored in protected variables.Features of phpCoreClass are made available through functions named like 'YYYByParent' where YYY is a class feature being queried as constants, properties or methods.Requirements: PHP 5.0 or higher
-
io_dz takes a variable values, serializes and compresses it with gzip algorithm to occupy less space.A variable value can also be uncompressed and unserialized again.Requirements: PHP 4.0 or higher
-
Arrays, objects and even scalar variables, such as strings, integers, etc., can be dumped in plain text or HTML.
-
A specified array value is serialized to a string and assigned to a given constant.Constant Array can also do the opposite, i.e retrieve the original constant array value by unserializing the value assigned to the constant.Requirements: PHP 5.0 or higher
-
Object and Variable Registry creates a registry to store and retrieve values of objects and variables that can be accessed using this class static function calls. That allows the use objects as singletons.Functions to add, remove or check the existence of object variables to the registry, are provided, as well as for clearing all entries previously stored in the registry.Requirements: ...
-
Elements of an array of arbitrary depth can be referenced using a single string the represents the element array indexes separated by commas.Multi-Dimensional Array Handler can take an element index string and set or get its value, check if the element is set, or check it is empty or return the count of entries if the element is an array.Requirements: ...
-
Table cells can be located within an HTML document and the cells' data can be extracted into bi-dimensional arrays. The cell data encoded with UTF-8 can be automatically converted into HTML entities.
-
Serializer takes a value of any PHP data type and generates a string that represents the value serialized in one of the supported formats.Serialization formats of PHP, JavaScript (JSON) and XML, are currently supported. Array and objects are traversed recursively when they have members that are also arrays or objects.Requirements:PHP 4.10 or higher
-
tree_datas transforms a 2D linear array of content information into another array with a tree structure.tree_datas can be used to generate hierarchic menus for navigation in a Web site and easily return brothers, children and fathers of a given nodeThe new version is PHP5 compatible and can now sort the children of a given node.
-
PHP Collection Class manages collections of objects like similar classes available in Java. The main collection has functions to add, remove and retrieve objects to a collection.There is also an iterator class that can traverse the list of objects in a collection by the order they are inserted.
-
Object To XML traverses the public variables of a given object and generates a XML document with the variable names as tags and the variable values as tag values.Object and array values are converted into nested tag values. The class name is used as the root tag of the generated document.The resulting XML document can be returned as a string.Requirements:PHP ...
-
PHP Collection can manipulate collection objects, also known as dictionary objects, like in Java, that store entry values indexed by name keys.Functions of PHP Collection:- Add entries by name key- Remove entries by name key or by position- Retrieve entry values by name key or by position- Determine whether there is already an entry with a given key- Iterate over ...

