Posts Tagged ‘php’

PHP Zip File Functions

PHP Zip File Introduction
The Zip files functions allows you to read ZIP files.

Installation
For the Zip file functions to work on your server, these libraries must be installed:

The ZZIPlib library by Guido Draheim: Download the ZZIPlib library
The Zip PELC extension: Download the Zip PELC extension

Installation on Linux Systems
PHP 5+: Zip functions and the [...]

Continue reading »

PHP XML Parser Functions

The XML functions lets you parse, but not validate, XML documents.
XML is a data format for standardized structured document exchange. More information on XML can be found in our XML Tutorial.
This extension uses the Expat XML parser.
Expat is an event-based parser, it views an XML document as a series of events. When [...]

Continue reading »

PHP String Functions

PHP String Introduction
The string functions allow you to manipulate strings.

Installation
The string functions are part of the PHP core. There is no installation needed to use these functions.

PHP String Functions
PHP: indicates the earliest version of PHP that supports the function.

Function
Description
PHP

addcslashes()
Returns a string with backslashes in front of the specified characters
4

addslashes()
Returns a [...]

Continue reading »

PHP SimpleXML Functions

PHP SimpleXML Introduction
The SimpleXML functions lets you convert XML to an object.
This object can be processed, like any other object, with normal property selectors and array iterators.
Some of these functions requires the newest PHP build.

Installation
The SimpleXML functions are part of the PHP core. There is no installation needed to use these functions.

PHP SimpleXML [...]

Continue reading »

PHP MySQL Functions

PHP MySQL Introduction
The MySQL functions allows you to access MySQL database servers.

Installation
For the MySQL functions to be available, you must compile PHP with MySQL support.
For compiling, use –with-mysql=DIR (the optional DIR points to the MySQL directory).
Note: For full functionality of MySQL versions greater than 4.1., use the MySQLi extension instead. If you would [...]

Continue reading »

PHP Misc. Functions

PHP Miscellaneous Introduction
The misc. functions were only placed here because none of the other categories seemed to fit.

Installation
The misc functions are part of the PHP core. There is no installation needed to use these functions.

Runtime Configuration
The behavior of the misc functions is affected by settings in the php.ini file.
Misc. configuration options:

Name
Default
Description
Changeable

ignore_user_abort
“0″
FALSE indicates [...]

Continue reading »