Files
TowerOptoSifAndSpectral/html/php/GetSata.php
2021-12-23 14:43:26 +08:00

10 lines
288 B
PHP

<?php
exec("ps -ef | grep TowerOptoSifAndSpectral | grep -v grep",$output,$return);
//var_dump( $output);
if ( count($output)>0)
{
echo '<div style="width: 20px;height: 20px;background: green"></div>';
}else{
echo '<div style="width: 20px;height: 20px;background: red"></div>';
}