我是ant脚本的新手,我想创建一个ant脚本,它将执行并从php脚本中获取数据并将数据插入数据库。
我已经完成了前两个问题Running PHP script in background using Ant和build PHP with ant scripts,但这对我不起作用。
我试过下面的代码:
<project name="fetch_record_test" basedir="." default="*install">
<target name="*install" depends="test-src">
<exec executable="${php}" failonerror="true" dir="${source}">
<arg line="${projectdir}/Connectors/record_mapping.php"/>
<arg line="-output" />
</exec>
</target>
</project>
任何人都可以给我看蚂蚁脚本吗 感谢