NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
# B.24 IncludePathTask Modifies the PHP `include_path` configuration option for the duration of this phing run. The given path can be prepended (default) or appended to the current include path, or it can replace the include path. Table B.24:聽Attributes NameTypeDescriptionDefaultRequired`classpath``String`the new include path\[s\]n/aYes`classPathRef``String`Reference to a previously defined Path typen/aNo`mode``String`Whether to `prepend`, `append` or `replace` the include path with the given path.prependNo B.24.1 Examples ``` <includepath classpath="new/path/here" /> <includepath classpath="path1:path2" /> ``` ``` <path id="project.class.path"> <pathelement dir="lib/"/> <pathelement dir="ext/"/> </paentry> <includepath classpathref="project.class.path" /> ```