使用php脚本创建ant来获取记录

时间:2012-10-04 05:42:33

标签: php ant

我是ant脚本的新手,我想创建一个ant脚本,它将执行并从php脚本中获取数据并将数据插入数据库。

我已经完成了前两个问题Running PHP script in background using Antbuild 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>

任何人都可以给我看蚂蚁脚本吗 感谢

1 个答案:

答案 0 :(得分:1)

${php}存在问题,请尝试将executable=${php}更改为executable="php"        

查看此link以获取更多信息。

要在数据库中存储数据,您可以将php文件与数据库连接或使用ant sql