Package:
Summary:
Convert UTF encoded text to ISO character set
Groups:
Author:
Description:
This class can be used to convert UTF encoded text to ISO character set.
Package:
Summary:
Generate HTML form select input option list
Groups:
Author:
Description:
This class can be used to generate HTML form select input option list.
It can take an associative array and generate select input option tags.
Specific option values may be set individually. The currently selected option value is also configurable.
Package:
Summary:
Search for videos in YouTube using its API
Groups:
Author:
Description:
This class can be used to search for videos in YouTube using its API.
It can send HTTP requests to the YouTube API Web server to perform searches for videos with given keywords.
The class parses the results and generates HTML to display the found videos in a Web pages with links to the video pages, as well other video details like the length, summary, number of views, ratings, etc..
Package:
Summary:
Manipulate INI file configuration values
Groups:
Author:
Description:
This package can be used to manipulate INI file configuration values.
There is a class that can read INI files and parse them to extract the list of sections and entry names and values.
Another class allows modifying, adding and deleting sections and entries, as well save the modified configuration to the INI file.
Package:
Summary:
Manipulate cached entries in memcached servers
Groups:
Author:
Description:
This class can be used to manipulate cached entries in memcached servers.
It uses the PHP Memcache extension to connect to one or more Memcached servers and store, retrieve, delete, increment and decrement entries with given keys.
Package:
Summary:
Get information of the country of an IP address
Groups:
Author:
Description:
This class can be used to get information of the country of an IP address.
It takes an IP address and queries MySQL database to determine the country associated with the given IP address range.
The class returns the associated country name and country codes with both 2 and 3 letters.
Package:
Summary:
Get information of the country of an IP address
Groups:
Author:
Description:
This class can be used to get information of the country of an IP address.
It takes an IP address and queries MySQL database to determine the country associated with the given IP address range.
The class returns the associated country name and country codes with both 2 and 3 letters.
Package:
Summary:
Create images from CAPTCHA validation
Groups:
Author:
Description:
This class can be used to create images from CAPTCHA validation.
It can generate a random text with 5 characters from restricted range of characters which is stored in a session variable for posterior verification.
The class creates an image that displays the picked text characters obfuscated with random colored lines. The image size, text font color and background color are configurable parameters.
Package:
Summary:
Convert numbers to Arabic representation
Groups:
Author:
Description:
This class can be used to convert numbers to Arabic representation.
It takes a number and returns a text string that represents the given number using Arabic characters.
Package:
Summary:
Register and call event handlers
Groups:
Author:
Description:
This class can be used to register event handler functions and call handler functions.
It is a base class that can register callback functions that will be invoked when an event occurs.
Sub-classes can extend the class to trigger object specific events that make the base class call the registered callback functions.