在托管服务器上使用Javascript自动运行php文件

时间:2017-11-01 21:06:35

标签: javascript php firebase

我需要在我的服务器上运行一个PHP文件(在hostinger,托管网站上),按照一些时间表,每小时说,我正在使用Firebase实时数据库,我尝试过CRON,但是Javascript无法运行。关于如何每小时实施一次的想法?

<?php
include("simple_html_dom.php");
$html = new simple_html_dom();
$html->load_file('http://www.somesite.com');
$somediv= $html->find('somediv',0);
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <script src="https://www.gstatic.com/firebasejs/3.8.0/firebase.js">
</script>
</head>       
<body>   
<script> 
var config = {
apiKey: "AIzaxxxxxxxxxxxxxxxxxxxxxxx",
authDomain: "xxxxxxxxxxxxxxxxx.firebaseapp.com",
databaseURL: "https://xxxxxxxxxxxxxx.firebaseio.com/",
storageBucket: "xxxxxxxxxxxxx.appspot.com",
};
firebase.initializeApp(config);

var myFirebase = firebase.database().ref();
var recommendations = myFirebase.child('somechild').child('somediv').set("<?
php echo $somediv; ?>");

</script>

<?php echo $somediv; ?><br />

</body>
</html>

PHP从某个站点读取一些div并捕获要存储在Firebase数据库中的元素

0 个答案:

没有答案