我在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>