在OpenWRT中自动运行php文件

时间:2014-03-17 16:04:23

标签: php linux openwrt

我在PHP网络浏览器中有一个lighttpd文件,我必须每1分钟重新加载一次。如果我没有在浏览器中打开文件,它是否可以自动运行。

PHP脚本:

<script type="text/javascript">

$(document).ready(function(){   

$.getJSON("http://www.exmpl.web.id/data_user.php?jsonp=?", function(data) { 

        // alert(data.user_req);
        if (data.user_req=="1") {
            $.post("../properties/python/on_led.py");
        }
        else if (data.user_req=="2") {
            $.post("../properties/python/off_led.py");
        };
});
</script>

0 个答案:

没有答案