从浏览器、php 或 xml 读取变量
我在 autoit 中有一个应用程序,我需要以某种方式使用 autoit 读取 php 代码的结果,因此 php 代码将检查数据库服务器端,如果没问题,autoit 进程将继续,否则将停止。
I have a application in autoit , I need to somehow read a result of a php code using autoit, so the php code will check de DB serverside, and if it`s OK the autoit process will continue, if not it will stop.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题比较模糊,所以我举个简单的例子。
在网络服务器中创建一个名为“autoit-api.php”的文件。将代码放入其中,如下所示:
这个想法是您将使用此文件从数据库检索数据,然后打印它。不要添加任何 HTML。仅打印值。
还可以在您自己的计算机上创建一个 AutoIt 脚本,并将其命名为“retrieve php value.au3”或类似名称。在其中输入如下代码:
然后 AutoIt 将使用从 php 脚本获取的值创建一个消息框。
Your question is vague, so I give you a simple example.
Make a file called in the webserver called "autoit-api.php". Put code in it something like this:
The idea is that you will use this file to retrieve the data from the database, and just print it. Don't add any HTML. Print just the value.
Also make an AutoIt script on your own computer and call it "retrieve php value.au3" or similar. Put in it a code like this:
Then AutoIt will make a message box with the value that he got from the php script.