Package:
Summary:
Measure the time it takes to execute PHP scripts
Groups:
Author:
Description:
This class can be used to measure the time it takes to execute PHP scripts.
It can start measuring the time a script section takes to execute assigning it a name.
The class then takes the time the section ended to execute. It also supports nested script sections.
Package:
Summary:
Retrieve information and update Twitter statuses
Groups:
Author:
Description:
This class can be used to retrieve information and update statuses and the account of a Twitter user.
It can send HTTP requests to the Twitter API Web server on behalf of a given user and performs several types of operations.
Currently it can get the user statuses aggregated in several ways, update or delete statuses, get, send and delete direct messages, add, delete and verify friends, etc..
Package:
Summary:
Manipulate text strings
Groups:
Author:
Description:
This class can be used to manipulate text strings.
It performs several types of instructions to manipulate text strings like: comparing values, get the length, get parts of the string, concatenate, search text, map the case of letters, convert to number values, etc..
Package:
Summary:
Handle TCP socket server connections
Groups:
Author:
Description:
This class can be used to handle TCP socket server connections.
It can listen to connection requests to a given IP address and port.
The class handles connection events like connection requests, reading the request data and send the response data, by calling functions of the class for custom processing.
Sub-classes may extend the class to implement special handling of connection events for different types of server applications. Several examples are provided to demonstrate this ability.
Package:
Summary:
Get a location weather forecast from Google
Groups:
Author:
Description:
This class can be used to get a location weather forecast from Google.
It can send an HTTP request to the Google Weather Web services API server to request for the weather forecast for a given world location.
The class can parse the response and extract the weather forecast details for the next days, like the high and low temperatures and the weather icon.
Package:
Summary:
Database access abstraction layer
Groups:
Author:
Description:
This class implements a database access abstraction layer.
It provides a single interface to access MySQL using the regular mysql extension, or the MySQLi, or any database supported by the PDO extension.
The class can establish connections, manage transactions, execute prepared queries, retrieve query results into arrays, get the number of query result rows, and the last inserted identifier.
Package:
Summary:
Load and save images in the BMP format
Groups:
Author:
Description:
This class can be used to Load and save images in the BMP format.
It can open an 24 bit image file in the BMP format and create a GD image resource with the image loaded from the file.
The class can also do the opposite, i.e. take a GD image resource and save the image to a file in the BMP format.
Package:
Summary:
Continuous integration framework
Groups:
Author:
Description:
This package is a continuous integration framework.
It can run continuous integration loops to verify the result of a build of a Web site.
It can produce an extensive HTML report about the results of the continuous integration loop.
Package:
Summary:
Parse and compose URL from its parts
Groups:
Author:
Description:
This class can be used to parse and compose URL from its parts.
It can parse an URL and split its component values that are stored as entries of an array class variable.
The class can also build an URL by individually defining the values of its components like thr URL scheme,
mpUrlInfo is a implementation of PHP classes (mpUrlInterface and mpUrlInfo) which are usable to represent a URL.
It provides a object oriented interface to build URLs or to get detailed informations from existing URLs.
Package:
Summary:
Send HTTP requests to Web servers
Groups:
Author:
Description:
This class can be used to send HTTP requests to Web servers.
Http client using fsock open direct header stream to server and read response. Cookies, session , Get, post, http status suported.