12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- if ('D:\phpstudy_pro\WWW\laravel-app\pear ' != '@'.'include_path'.'@ ') {
- ini_set('include_path', trim('D:\phpstudy_pro\WWW\laravel-app\pear '). PATH_SEPARATOR . get_include_path());
- $raw = false;
- } else {
-
- ini_set('include_path', __DIR__ . PATH_SEPARATOR . get_include_path());
- $raw = true;
- }
- define('PEAR_RUNTYPE', 'pecl');
- require_once 'pearcmd.php';
- ?>
|