What is PEAR
PEAR Is short for ‘PHP Extension and Application Repository’
PEAR is having it’s primary goal to become a repository for PHP extensions and library code. The most important goal of the PEAR project is to try to define standard coding packages that can be used be developers directoly and it is re-usable coding.
Each package is a seperate project and is having a diffreent developer team.
Packages are in the gzipped tar files with a description file inside, and installed on your server using the PEAR installer.
You can install any pear package as
———–
pear install pear-package-name
———–
You can check all the PEAR packages that are available with
————
pear list-all
————
You can check installed PEAR packages on your server as
————
pear list
————

















October 10th, 2006 at 11:24 am
I think such project is going to be much helpful to the core PHP Developers to meet their ambition to write portable and re-usable code.