1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?xml version="1.0" encoding="utf-8"?> <project name="test" default="main"> <target name="main"> <adhoc-task name="showincludepath"><![CDATA[ class ShowIncludePathTask extends Task { function main() { $this->log(get_include_path()); } } ]]></adhoc-task> <showincludepath/> </target> </project> |