企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# 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" /> ```