Package:
Summary:
Store and retrieve data from files in JSON format
Groups:
Author:
Description:
This class can be used to store and retrieve data from files in JSON format.
It can set one or more key-value pairs and save all the values to a file serializing in JSON format.
The class can also open a previously saved file and read the saved values into a class array variable.
The comments in the class are in Portuguese.
In Portuguese:
Leia e escreva arquivos do tipo JSON. Com essa classe você pode criar um simples banco de dados com arquivos em disco.
Package:
Summary:
Access MySQL databases
Groups:
Author:
Description:
This class can be used to access MySQL databases. It can:
- Establish MySQL database server connections
- Execute SQL queries and return the results in arrays
- Count the number of records in tables
- Execute queries to retrieve a single value or multiple values
- Get the list of tables
- Get the SQL definition and record data for recreating a table
- Generate dump with SQL statements to recreate a database
Package:
Summary:
Establish conections to a MySQL database server
Groups:
Author:
Description:
This is a very simple class that can establish conections to a MySQL database server.
It can open a connection to a given MySQL server to become the default database connection.
The class can also select the current database and close the database connection.
In Portuguese:
Classe para conexão de banco de dados MySQL com PHP orientado a objetos.
Com esta classe retiramos todo o SQL das páginas.
Package:
Summary:
Generate XML for RSS 2 feeds
Groups:
Author:
Description:
This class can be used to generate XML for RSS 2 feeds.
It can compose an RSS feed by adding the channel and the items' parameters.
The class can render the RSS 2 XML definition as the current script outpút.
Package:
Summary:
Validate and process uploaded files
Groups:
Author:
Description:
Validate and process uploaded files
Package:
Summary:
Check and process uploaded files
Groups:
Author:
Description:
This class can be used to check and process uploaded files.
It can check whether a file was uploaded without errors, whether its size is within the accepted limit, whether the file name extension is in the list of accepted extensions, and whether the destination directory exists.
The class can copy a valid uploaded file to the destination directory. If the file is an image, it can also create a thumbnail.
Package:
Summary:
Detect the type of browser accessing the site
Groups:
Author:
Description:
This class can be used to detect the type of browser accessing the site.
It analyzes the user agent request header and compares it to known patterns to detect the type of browser currently accessing the site.
The class can return the browser name, version, whether it is a browser on a mobile device and the user language.
Package:
Summary:
Remove symbols and HTML tags from text
Groups:
Author:
Description:
This class can be used to remove symbols and HTML tags from text.
It takes a given text string can strip a list of symbol characters and HTML tags from it.
The resulting string has its letters lowered the case and returned as UTF-8 text.
Package:
Summary:
Manage user contacts
Groups:
Author:
Description:
This package can be used to manage user contacts.
It can create and manage database records of people that are listed as contacts, as well the form of contact.
The contacts can be gathered in folders.
Package:
Summary:
Perform searches using Google search API
Groups:
Author:
Description:
This class can be used to perform searches using Google search API.
It can send an HTTP request to the Google search Web services API server to perform a search for given keywords.
The class can parse the results and return them in an array.
It can also send a request to the Google translate Web services API to perform the translation of a text between to given languages.
This class can be used for sending search request to google, and get search results.
Also it can be useful for translating text using google translate.