Development Php



Using popen() to read the output of the UNIX who command


Administrators currently logged on to the server


$ph = popen( "who", "r" ) or die( "Couldn't open connection to 'who' command" );
$host="www.rntsoft.com";
while ( ! feof( $ph )  ){
    $line = fgets( $ph, 1024 );
    if ( strlen( $line ) <= 1 )
        continue;
    $line = ereg_replace("^([a-zA-Z0-9_\-]+).*", "\\1
\n",$line );
    print "$line";
}
pclose( $ph );
?>