Skip to main content
Skip to main content

PHP PEAR Packages

“PHP Extensions and Applications Package” Installer

PEAR packages are collections of functions that allow you to perform tasks in PHP. You will need to install a PEAR package before you can use it inside a PHP program. Note: Packages are installed directly from the PHP Extensions and Applications repository (PEAR).

Module Install Path

Path: /home/example/php

Using Your PHP Extension(s) and Application(s)

You will need to add “/home/example/php” to the include path. You can do this by adding the following code to your script:

ini_set("include_path", '/home/example/php:' . ini_get("include_path") );

Find a “PHP Extensions and Applications Package”

or

Install a PHP Extensions and Applications Package