PHP-PEAR require_once('DB.php');

时间:2011-11-07 12:36:11

标签: php pear

我遇到了PEAR(PHP)的问题。这是错误:

Warning: require_once(DB.php): failed to open stream: No such file or directory in /WWW/xxx.php on line 2
Fatal error: require_once(): Failed opening required 'DB.php' (include_path='.:/usr/share/php:/usr/share/pear') in /WWW/xxx.php on line 2

我已经安装了PEAR(版本1.9.0) 在我的PHP文件中,前两行是:

1- <?php
2- require_once('DB.php');

问题出在哪里? 谢谢大家!

2 个答案:

答案 0 :(得分:6)

您需要安装模块:

pear install DB

虽然this page MDB2发出警告,但{{3}}已取代此软件包被取代(已弃用)。

答案 1 :(得分:2)

您也可以在不使用pear的情况下安装模块:

使用 Fedora / CentOS

  • yum install php-pear-DB

使用 Debian / Ubuntu

  • apt-get install php-db

- 达里奥