PHP include_path主值来自哪里?

时间:2010-08-25 18:58:27

标签: php centos5

通过phpinfo,我得到以下include_path 主值

.:/usr/share/pear:/usr/share/php

它似乎没有在任何地方设置... php ini已将所有include_path(s)注释掉,我的应用程序未手动设置,apache conf / php conf /其他各种conf / ini不设置它,不搜索set_include_path或phpvalue或ini_set等时的结果

可能设置“include_path”的其他想法吗?我具体询问主人价值。

(我在CentOS 5.4上)

2 个答案:

答案 0 :(得分:2)

来自php.ini文件

  

PHP的include_path默认设置为“。; / path / to / php / pear”
  ; http://php.net/include-path

你的上面似乎是在添加PHP的目录,所以目前的目录;梨; PHP(PHP的主页)目录

您还可以检查Apache confs或.htaccess文件,看看是否在那里设置。

答案 1 :(得分:1)

它是在构建时配置的。您可以通过查看phpinfo();

输出中的 Configure Command 来了解如何配置PHP安装

有关PHP配置选项的更多信息,请参阅PHP Installation and Configurationphp-build — Builds multiple versions of PHP也可能有帮助或兴趣。

Ubuntu用户注意

您将在phpinfo输出中找不到configure命令,请参阅this bug marked as invalid。以下是错误报告中提到的代码链接。

示例从phpinfo()配置命令:

Configure Command => './configure' '--build=i686-redhat-linux-gnu' '--host=i686-redhat-linux-gnu' '--target=i386-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib' '--with-config-file-path=/etc' '--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic' '--disable-rpath' '--without-pear' '--with-bz2' '--with-curl' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-png' '--with-pspell' '--with-expat-dir=/usr' '--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-track-vars' '--enable-trans-sid' '--enable-yp' '--enable-wddx' '--with-kerberos' '--enable-ucd-snmp-hack' '--with-unixODBC=shared,/usr' '--enable-memory-limit' '--enable-shmop' '--enable-calendar' '--enable-dbx' '--enable-dio' '--with-mime-magic=/usr/share/file/magic.mime' '--without-sqlite' '--with-libxml-dir=/usr' '--with-xml' '--with-system-tzdata' '--enable-force-cgi-redirect' '--enable-pcntl' '--with-imap=shared' '--with-imap-ssl' '--enable-mbstring=shared' '--enable-mbstr-enc-trans' '--enable-mbregex' '--with-ncurses=shared' '--with-gd=shared' '--enable-bcmath=shared' '--enable-dba=shared' '--with-db4=/usr' '--with-xmlrpc=shared' '--with-ldap=shared' '--with-ldap-sasl' '--with-mysql=shared,/usr' '--with-mysqli=shared,/usr/lib/mysql/mysql_config' '--enable-dom=shared' '--with-dom-xslt=/usr' '--with-dom-exslt=/usr' '--with-pgsql=shared' '--with-snmp=shared,/usr' '--enable-soap=shared' '--with-xsl=shared,/usr' '--enable-xmlreader=shared' '--enable-xmlwriter=shared' '--enable-fastcgi' '--enable-pdo=shared' '--with-pdo-odbc=shared,unixODBC,/usr' '--with-pdo-mysql=shared,/usr/lib/mysql/mysql_config' '--with-pdo-pgsql=shared,/usr' '--with-pdo-sqlite=shared,/usr' '--enable-dbase=shared'