在PHP中使用HTML标记

时间:2018-04-19 09:37:31

标签: javascript php html arrays explode

背景

我在各种Raspberry PI上有一个playlog.csv文件,格式如下:

2018-03-22 12:43:21,NM_Test.h264,-2 //PI 1
2018-03-22 12:43:21,NM_Test.h264,-2 //PI 2
2018-03-22 12:43:21,vid.h264,0 //PI 3

我可以通过以下方式连接到每个PI并拖尾CSV文件:

<DOCTYPE html>
<html>

<style>
#circleRed {
    background: #ff0000;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#circleGreen {
    background: #00ff00;
    width: 15px;
    height: 15px;
    border-radius: 50px;
}
</style>

<?php
    require_once 'Net/SSH2.php';
    require_once 'phpseclib1.0.10/Crypt/RSA.php';
    $config = require 'config.php';
    $log = 'logfile.txt';

    if(is_array($config)){
        foreach($config as $cred){
            $ssh = new Net_SSH2($cred['ip'], $cred['port']); //get the IP and port 
            $key = new Crypt_RSA();
            $key->loadKey($cred['key']);

            if (!$ssh->login('pi', $key)){
                //logging with file_put_contants, Append mode, exclusive lock is more race condition safe then an open file handle.
                file_put_contents($log, "[".date('Y-m-d H:i:s')."]Login Failed for {$cred['ip']}\n", FILE_APPEND|LOCK_EX);
                continue;
            }

            $output = $ssh->exec('tail -1 /var/log/playlog.csv');    
        }
    };

    $array = explode(',',$output);

    if(in_array('0', $array, true)){
        echo '<div id="circleGreen"></div>';
    }
    if (in_array('-2'||'-3'||'-4'||'-5', $array, true)){
        echo '<div id="circleRed"></div>';
    }
 ?>

 </body>
 </html>

问题

查看最右边的值,如果值为&#39; -2&#39;或&#39; -3&#39;等,我想要显示一个红色圆圈,但如果值是&#39; 0&#39;,我想在我的网页上显示一个绿色圆圈。我试图通过SSH连接所有PI。

但是目前当我运行我的代码时,我得到一个空白的网页,我无法弄清楚我做错了什么?

2 个答案:

答案 0 :(得分:1)

您需要注意in_array()的严格模式,因为它是类型敏感的。对于您的情况,您可以检查最后一个元素是否小于零。这是一个例子。虽然你在foreach循环中做了所有事情来检查每个pi的返回值。

foreach (...) {

    ...
    $output = $ssh -> exec ('tail -1 /var/log/playlog.csv');
    $array = explode (',', $output);

    if (end ($array) >= 0) {
        echo '<div id="circleGreen"></div>';
    } else {
        echo '<div id="circleRed"></div>';
    }

}

答案 1 :(得分:1)

该行

in_array('-2'||'-3'||'-4'||'-5', $array, true)

没有按你的想法行事。 in_array只能接受$needle参数的一个值 - 此行会将初始表达式计算为布尔值true,然后检查$array是否包含该确切值。

如果要检查两个数组之间是否存在重叠(即,如果值-2,-3,-4或-5存在于爆炸线内的任何位置),则可以使用array_intersect,例如< / p>

if (count(array_intersect(['-2', '-3', '-4', '-5'], $array))) {
  ...