|
Contents
Friends of the PHP Classes site is a initiative to provide recognition to the users that contribute to the growth of the site community.
For more information on how to become a friend of the site look here. |
Contents
Contents
Congratulations to Alexander Skakunov!
|
Nominees to win the award of April of 2008
| Class: |
Easy Navigator |
 |
|
Description: |
Generate breadcrumbs navigation based on the URL |
|
Author: |
Brandon Blincoe |
|
Age: |
18 |
|
Country: |
United States |
|
| Class: |
DFL |
 |
|
Description: |
Parse and run DFL language programs |
|
Author: |
Debug |
|
Age: |
18 |
|
Country: |
United States |
|
| Class: |
SimpleXML for PHP4 |
 |
|
Description: |
Load XML files in PHP 4 like SimpleXML extension |
|
Author: |
Taha Paksu |
|
Age: |
23 |
|
Country: |
Turkey |
|
| Class: |
Crypt_OpenSSL |
 |
|
Description: |
Class created for manipulation with ssl certs. |
|
Author: |
Pavel Saparov |
|
Age: |
20 |
|
Country: |
Czech Republic |
|
| Class: |
Configuration Loader |
 |
|
Description: |
Generate a PHP class from a configuration XML file |
|
Author: |
David Wainwright |
|
Age: |
34 |
|
Country: |
United Kingdom |
|
| Class: |
Secure Token Grid Authentication |
 |
|
Description: |
Generate grid of tokens, authenticate user with it |
|
Author: |
André Liechti |
|
Age: |
39 |
|
Country: |
Switzerland |
|
| Class: |
PHON |
 |
|
Description: |
Unserialize values exported with var_export |
|
Author: |
Martin Alterisio |
|
Age: |
25 |
|
Country: |
Argentina |
|
| Class: |
Geocoder |
 |
|
Description: |
Get coordinates of locations with geocode services |
|
Author: |
Bruyndonckx |
|
Age: |
45 |
|
Country: |
Belgium |
|
|
|
Contents
Contents
Contents
- Session Manager Implementation
 |
| Author: |
Carlos Alberto Junior |
| Date: |
2008-05-14 (1 day ago) |
| Groups: |
PHP 5, User Management |
| Description: |
This class can be used to manage logged user sessions.
It can register a session and store the user id, login and last access date and time in session variables.
The class can also check whether an user session is active if its last access occurred in the last 5 minutes. In that case the last access date and time is updated to the current date and time. |
|
- Log Writer and Reader
 |
| Author: |
Md. Shahadat Hossain Khan Razon |
| Date: |
2008-05-14 (1 day ago) |
| Groups: |
Databases, Logging |
| Description: |
This class can be used to store and retrieve activity logs from a MySQL database.
It can add new activity log records into a given MySQL table. It can log details like the type of log reference, an error message, the HTTP referrer URL, the remote user address, the logged user identifier, etc..
The class can also do the opposite, i.e., retrieve log entries from the database table and return it as an array. |
|
- Login and DB classes quick start
 |
| Author: |
raja |
| Date: |
2008-05-13 (2 days ago) |
| Groups: |
Databases, User Management |
| Description: |
This package can be used to authenticate users with records stored in a MySQL database.
It takes the user name and password of an authenticating user against user records in a MySQL database.
The class can setup session variables and update the last login date if the user was authenticated successfully. |
|
- Drevo Export
 |
| Author: |
Alexander Skakunov |
| Date: |
2008-05-13 (2 days ago) |
| Groups: |
XML, PHP 5, Time and Date, Web services |
| Description: |
This package can be used to export event dates like birth dates from Drevo tool to Google Calendar.
It can parse Drevo XML files to extract event data. Then it can communicate with Google Calendar site and submit the event data to a given user calendar. |
|
- io_dz
 |
| Author: |
bobak |
| Date: |
2008-05-12 (3 days ago) |
| Groups: |
Compression, Data types |
| Description: |
This is a simple class that can be used to serialized and unserialize variable values to a compressed binary string.
It takes a variable values, serializes and compresses it with gzip algorithm to occupy less space.
The class can also do the opposite, i.e. uncompress and unserialize a variable value. |
|
- Slide Show
 |
| Author: |
Barton Phillips |
| Date: |
2008-05-12 (3 days ago) |
| Groups: |
PHP 5, Content management, AJAX |
| Description: |
This class can be used to present a slide show of local or remote Web images.
It can extract lists of image files available on the local server or a remote Web server.
The image list is served to the browser with retrieves it with Javascript code that performs AJAX requests to obtain the images to display.
For local server images the class returns a list of image file names. For remote Web server, it retrieves a given remote page and parses it to return the list of GIF, JPEG and PNG images linked from that page.
The Javascript libraries provided within this package control the slide show presentation. |
|
- QXML
 |
| Author: |
Tom Schaefer |
| Date: |
2008-05-11 (4 days ago) |
| Groups: |
XML, PHP 5 |
| Description: |
This class can be used to generate XML documents from arrays and also parse XML documents to build arrays.
It can work with an XML's textNodes and attributes, store them into an array and generate an XML document .
The class can also do the opposite, i.e. take an XML document file or string and parse it, and then build an array.
It is quite simple in handling. Just look at the sample files. |
|
- Gerar Tabela Semanticamente Correta
 |
| Author: |
Thiago Silva Ferreira |
| Date: |
2008-05-10 (5 days ago) |
| Groups: |
HTML, PHP 5 |
| Description: |
This class can be used to generate HTML table defined programmatically.
It can compose the definition of a table by adding rows, cells and captions.
The class can display the defined table by generating its HTML as part of the current script output.
The code and comments are in Portuguese. |
|
- Number to Turkish text
 |
| Author: |
Yetkin Sakal |
| Date: |
2008-05-09 (6 days ago) |
| Groups: |
Localization, Text processing |
| Description: |
This class can be used to spell quantity numbers using Turkish words.
It takes a number with up to 21 digits and generates a text strings that spell the number using Turkish words.
The class stores the resulting string in a class variable.
Change Log:
v1.01 - A small bug cominp up in inputs between 1000 and 2000 was fixed. |
|
- Debug system
 |
| Author: |
Maxim |
| Date: |
2008-05-08 (7 days ago) |
| Groups: |
HTML, PHP 5, Debug, Logging |
| Description: |
This class can be used to output debug information of the current script to an HTML log file.
It sets up the PHP error handler to a class function that generates HTML formatted output of the errors that may be triggered during the current script execution.
The class may also output arbitrary debugging messages also formatted as HTML. Optionally, the messages may include the current values of super-global variables.
The debug output may be displayed as the current script output or added to a given log file. |
|
- Valid Markup
 |
| Author: |
Vagharshak Tozalakyan |
| Date: |
2008-05-08 (7 days ago) |
| Groups: |
HTML, XML, PHP 5 |
| Description: |
This is a very simple class that can convert the HTML output of a page to XHTML using the Tidy extension.
It starts output buffering using the ob_tidyhandler function as filter to make it regenerate the current script HTML output to make sure it is formatted as XHTML.
The class may set the DTD to one of several possible HTML and XHTML versions. |
|
Contents
|