Run php script stored in the server?

前端 未结 2 1332
独厮守ぢ
独厮守ぢ 2021-02-06 17:30

I have a php script stored in Wamp server, and want that my application execute it to perform some image treatement from server then the server send the result to the Android ph

2条回答
  •  醉梦人生
    2021-02-06 18:15

    There are various ways to do that 1. You can call the script using webrequest.create from your application Or you can use CURL in case of php application 2. You can execute the script using cron job and schedule it to run according to your need

    Link 1

    Link 2

提交回复
热议问题