* PEAR, the PHP Extension and Application Repository
* @author Stig Bakken <ssb@php.net>
* @author Tomas V.V.Cox <cox@idecnet.com>
* @copyright 1997-2009 The Authors
* @license http://opensource.org/licenses/bsd-license.php New BSD License
* @link http://pear.php.net/package/PEAR
if (!defined('PEAR_RUNTYPE')) {
// this is defined in peclcmd.php as 'pecl'
define('PEAR_RUNTYPE', 'pear');
define('PEAR_IGNORE_BACKTRACE', 1);
//the space is needed for windows include paths with trailing backslash
// http://pear.php.net/bugs/bug.php?id=19482
if ('C:\xampp\php\pear ' != '@'.'include_path'.'@ ') {
ini_set('include_path', trim('C:\xampp\php\pear '). PATH_SEPARATOR . get_include_path());
// this is a raw, uninstalled pear, either a cvs checkout, or php distro
@ini_set('allow_url_fopen', true);
@ini_set('track_errors', true);
@ini_set('html_errors', false);
$_PEAR_PHPDIR = '#$%^&*';
set_error_handler('error_handler');