Files
TowerOptoSifAndSpectral/html/php/GetSata.php

10 lines
288 B
PHP
Raw Permalink Normal View History

2021-12-23 14:09:37 +08:00
<?php
2021-12-23 14:43:26 +08:00
exec("ps -ef | grep TowerOptoSifAndSpectral | grep -v grep",$output,$return);
//var_dump( $output);
if ( count($output)>0)
{
2022-01-12 14:14:42 +08:00
echo '<div style="width: 40px;height: 20px;background: green"></div>';
2021-12-23 14:43:26 +08:00
}else{
2022-01-12 14:14:42 +08:00
echo '<div style="width: 40px;height: 20px;background: red"></div>';
2021-12-23 14:43:26 +08:00
}