我是php的新手。现在我写了两个php文件( receive.php 和 send.php )。在Android设备中,我还编写了一个应用程序,允许输入一个字符串并将其发布到 receive.php 。然后,我可以使用 send.php 通过GCM服务器将此字符串发送到其他设备。
现在我遇到一个问题,在从一个Android设备收到字符串后,我的服务器如何自发运行send.php?我的意思是,一旦一个设备将字符串发布到 receive.php ,应该激活 send.php 以将此字符串发送到其他设备?
抱歉我的英语不好。我真的很期待你的帮助。谢谢!
答案 0 :(得分:0)
尽管我理解你的问题,我认为在 receive.php 脚本中,你应该检查一旦你收到了所需的数据,然后执行 send.php的代码。通过在条件中进行检查,您可以在 receive.php 脚本中包含 send.php 代码。
答案 1 :(得分:0)
首先创建一个名为 DoSomething.php
的PHP文件 function Receive() {
code to be executed;
}
function Send() {
code to be executed;
}
接收功能包括您的Receive.php代码和发送功能包括您的发送。
之后添加以下内容:
Receive();
Send();
然后它就完了。
这个DoSomething.php文件代码之后就像这样。
<?php
function Receive() {
code to be executed;
}
function Send() {
code to be executed;
}
Receive();
Send();
?>