Package:
Summary:
Log variable values to files
Groups:
Author:
Description:
This class can be used to log variable values to files.
It can add log entries to files with the values of variables of any PHP types.
The log files are stored in a configurable logs directory with names based on the current calling context.
The log file size limit and the log line length wrap limit are some of the configurable parameters. The class configuration values can be retrieved from a XML file.
Package:
Summary:
Generate page with preloaded images
Groups:
Author:
Description:
This class can be used to generate page with preloaded images.
First, it can list images from a directory and store the list in a MySQL database.
The class can generate HTML with Javascript to preload all listed images in the user browser, so the next browsed pages that need the images can load much faster.
Package:
Summary:
Detect whether PHP is running an opcode cache
Groups:
Author:
Description:
This class can be used to detect whether PHP is running an opcode cache.
It can check the presence of certain PHP options or functions to determine if one of several known opcode cache extensions is available.
Currently it can detect XCache, Microsoft WinCache, APC, eAccelerator, PHPA and Zend Accelerator.
Package:
Summary:
Convert text into numeric HTML entities
Groups:
Author:
Description:
This is a very class that can be used to convert text into numeric HTML entities.
It converts all characters of a text string into HTML as numeric entities.
Package:
Summary:
Filter values to prevent security exploits
Groups:
Author:
Description:
This class can be used to filter values to prevent security exploits.
It can filter values in several ways to avoid values that could be used to perform security attacks.
Currently it can filter values to prevent MySQL SQL injections, injection of e-mail messages in headers, escaping values to prevent cross-site scripting, generate and validate tokens to prevent cross-site request forgery attacks.
Package:
Summary:
Read large text files one byte at a time
Groups:
Author:
Description:
This class can be used to read large text files one byte at a time.
It uses PHP function file_get_contents to seek to the current read position and reads lines of text one byte at a time.
It can also seek the file to find the position of a given line.
Package:
Summary:
Translate text using Google Translate
Groups:
Author:
Description:
This class can be used to translate text using Google Translate.
It can send a request to Google Translate Web services API to translate a text to a given idiom.
The class can also return a list of valid accepted idioms including auto-detect the original text idiom.
Package:
Summary:
Display an hierarchic menu stored in a MySQL table
Groups:
Author:
Description:
This class can be used to display an hierarchic menu stored in a MySQL table.
It retrieves the title and link URLs of items of a menu from a MySQL database product table.
The class generates HTML and Javascript to display the pull down menus with links according to the hierarchy of children and parent items retrieved from the database.
Package:
Summary:
Display an hierarchic menu stored in a MySQL table
Groups:
Author:
Description:
This class can be used to display an hierarchic menu stored in a MySQL table.
It retrieves the title and link URLs of items of a menu from a MySQL database product table.
The class generates HTML and Javascript to display the pull down menus with links according to the hierarchy of children and parent items retrieved from the database.
Package:
Summary:
Display the structure of arrays
Groups:
Author:
Description:
This class can be used to display the structure of arrays.
It takes an array value and displays its structure and values.
The class can also display the path and line of the source of the code that calls the class.