PHP Data Type
Modeling and manipulating data types-
Double Linked List implements a double linked list similar to the one available in Java. It has functions for adding and removing objects and iterate through the list using iterators.
-
Data Grid executes a given SQL query and generates an HTML table that displays the query results.Data Grid can associate a query result column with a given text that is used to display as title of the table as column header.Navigation links for spliting the query results into multiple pages, can also be generated.
-
A JSON representation of any variable value of any PHP type can be generated.JSON can also do the opposite, i.e. take a string with a value represented in a JSON format and recreate a PHP variable value of the type defined in the serialized JSON string.Requirements: PHP 4.0 or higher
-
ArrayList should be a helpful tool to simplify the handling of lists in PHP. It is similar to the java.util.ArrayList class of Java. You are able to delete, modify, add and iterate list entries.
-
Autoloader can be used to automatically load classes from given directories when the objects of the classes are created. It scans given directories for class files that have one several possible file name extensions.When an object of a class is created and the respective class file is not loaded, Autoloader can include the right class file from the previously scanned ...
-
DBNavigator allows youto browse and edit data stored in a MySQL database. It generates an AJAX Web based interface to edit, insert, search rows of MySQL database tables. It can be used to update and delete multiple records at once. It may also prevent editing or deleting records by simultaneous users.Each database table record to be edited can be bound ...
-
Enhanced QuickSort implements an enhanced version of the quicksort algorithm to sort an array of comparable values.Enhanced QuickSort uses a cutoff point to switch to an insertion sort when the array size has become too small for quicksort to be useful. It is recommended for use with arrays of 10,000 items or less.Enhanced QuickSort can sort comparable values of type ...
-
Array to List can be used to display an HTML list of entries from nested array. It traverses the array and display its entries and items of an unordered HTML list.Entries that have array values are displayed as nested lists. Entries with other types of values can be displayed optionally with the values followed by the entry indexes.The type of ...
-
ps stack can be used to manage a LIFO stack (Last In First Out) of values like in the Postscript language. It implements most of the Postscript stack operations except for mark and cleartomark.ps stack can push and pop values from the stack, get the value at the top of the stack or at a given position, get the count ...
-
ps stack classes can be used to manage a LIFO stack (Last In First Out) of values like in the Postscript language. It implements most of the Postscript stack operations except for mark and cleartomark.ps stack classes can push and pop values from the stack, get the value at the top of the stack or at a given position, get ...
-
ps queue classes can be used to manage a FIFO queue (First In First Out) of values like one might manage the stack in the Postscript language.ps queue classes can push and pop values from the queue, get the value at the top of the queue or at a given position, get the count of values, exchange the position of ...
-
ps queue can be used to manage a FIFO queue (First In First Out) of values like in the Postscript language.ps queue can push and pop values from the queue, get the value at the top of the queue or at a given position, get the count of values, exchange the position of two values, duplicate the value at the ...
-
Extended Array Object can be used to create and manipulate arrays as objects in a similar way to Ruby and prototype framework. It can create array objects from an existing array value or from a list of array member values.Extended Array Object provides functions to:- Traverse all array members using a callback function- Determine the different between two arrays- Get ...
-
Polymorphic Stack is a simple class that implements a LIFO stack (Last In First Out) of values. It uses arrays to push values of any type on the top of the stack.Polymorphic Stack can also pop values from the stack by the reverse order they were pushed. It may also return the value at the top of the stack without ...
-
Object Extensions for PHP can be used to extend already instantiated objects with new functions and variables. It can also be used to define and call callback functions at run-time.

