Package:
Summary:
Measure the time elapsed during PHP execution
Groups:
Author:
Description:
This class can be used to measure the time elapsed during PHP execution.
It can start counting time and at any time later stop and get the elapsed time since the start.
Package:
Summary:
Implement neural networks using back propagation
Groups:
Author:
Description:
This class can be used to implement neural networks using back propagation.
It can setup a neural network work with a given number of layers.
The class takes a data set and a test output data set and runs the neural network using back propagation to to adjust weights based on network errors.
Package:
Summary:
Generate a XML document from array values
Groups:
Author:
Description:
This class can be used to generate a XML document from array values.
It traverses a given array recursively to get the values that are used to define the tags and data of the XML document.
The generated XML document is served as the current script output.
Package:
Summary:
Draw images defined with CSS like properties
Groups:
Author:
Description:
This class can be used to draw images defined with CSS like properties.
It can create an empty image or open and existing image from a file.
The class can draw different types of primitives using CSS like style strings to define the parameters of those primitives.
Currently it can draw text strings, other images like watermarks, lines, rectangles, circles, ellipses, etc..
The generated image can also be cropped and resized before it is saved to a file.
Package:
Summary:
Build and execute MySQL queries from bean objects
Groups:
Author:
Description:
This package can be used to Build and execute MySQL database queries from bean objects.
It can take an object from a bean class and use PHP reflection to extract the object variable values in order to compose and execute SQL INSERT, UPDATE and DELETE queries on a given MySQL database.
Package:
Summary:
Extract images from Fuji MPO files
Groups:
Author:
Description:
This class can be used to extract images from Fuji MPO files.
It can parse a given MPO file and extract the JPEG images that are contained in it.
The extracted images can be returned as strings, GD image resources, or be stored in other files with the same base file name as the original, but appended of the image number and the .jpg extension.