我只是在 JC 课程中学习 PHP 和 Javascript。我有以下学校项目。以下setInterval()
每 3 秒运行一次,但嵌入的 PHP 代码仅在第一次运行。
即newVal
第一次更新,但在接下来的迭代中不会改变它的值。该脚本永远不会远程登录回服务器以查找值是否已更改。
setInterval(function () {
var newVal, mem;
<?php $telnet = new PHPTelnet();?>;
<?php $result = $telnet->Connect('ip_address','username','password');?>;
<?php $telnet->DoCommand('show process memory summary"', $result);?>;
<?php $result = preg_replace('/[\r\n ]+/',' ', trim($result)); ?>;
newVal = "<?php echo substr($result,61,7) ?>";
newVal = newVal / 10000;
mem.update(newVal);
}, 3000);
感谢下面的一些答案/评论,这就是我为使其工作所做的工作:
Javascript
setInterval(function () {
$.get("memAccess.php", function(return_value) {
mem.update(parseFloat(return_value));
});
}, 3000);
单独的 PHP 文件
<?php
$telnet = new PHPTelnet();
$result = $telnet->Connect('ip_address','username','password');
$telnet->DoCommand('show process memory summary', $result);
$result = preg_replace('/[\r\n ]+/',' ', trim($result));
$result = substr($result,61,7);
echo $result;
$telnet->Disconnect();
exit();
?>