Php application.ini中的includePaths.library做什么?

Php application.ini中的includePaths.library做什么?,php,zend-framework,include-path,Php,Zend Framework,Include Path,我正在使用 // Ensure library/ is on include_path set_include_path(implode(PATH_SEPARATOR, array( dirname(__FILE__) . '/library', get_include_path(), ))); 在index.php文件中,includePaths.library=APPLICATION\u PATH/../library“做什么?我想删除其中一个,我更愿意将该行保留在appl

我正在使用

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    dirname(__FILE__) . '/library',
    get_include_path(),
)));

在index.php文件中,
includePaths.library=APPLICATION\u PATH/../library“
做什么?我想删除其中一个,我更愿意将该行保留在application.ini中,但我想知道为了实现这一点我必须做些什么,它们都做相同的事情。删除index.php文件中的一个问题是,稍后在该文件中可能进行的require_once“Zend/Application.php”调用将失败(除非ZF位于标准include路径上)。因此,我建议删除application.ini,它不会有任何不良影响