如何在LAN中的其他计算机上获取时间戳?

时间:2018-01-19 13:00:40

标签: php timestamp

cmd净时间192.168.0.2 / set / y。通过同步时间。 php怎么能在这台机器上获得192.268.0.2时间戳?

1 个答案:

答案 0 :(得分:1)

你可以这样尝试

<?php

    $output=array();
    $host='192.168.0.2';
    $cmd=sprintf( 'net time \\\\%s', $host );

    $output=shell_exec( $cmd );
    echo $output;

?>