私はantスクリプトを初めて使用します。実行して、phpスクリプトからデータを取得し、データベースにデータを挿入するantスクリプトを作成したいと思います。
前の2つの質問で、Antを使用してバックグラウンドでPHPスクリプトを実行し、Antスクリプトを使用してPHPをビルドしましたが、機能しません。
私は以下のコードを試しました:
<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>
誰かが私にそうするためのアリのスクリプトを見せてもらえますか?
ありがとう