ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的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" /> ```