2012-07-03 1 views

답변

1

원격 호스트에서 코드를 실행할 수 없습니다. 더 나은 솔루션은 파일을 계산하고 원격 호스트의 수를 메아리 스크립트를 배치하는 것, 다음을 수행하십시오

$num_files = file_get_contents('http://remoteaddr/count_files.php'); 
0

은 당신이 중 하나는 원격 시스템에있는 PHP 파일이 필요하거나 PHP의에보고 할 것 ftp functionality.

0
function count_files($user, $host, $dir_path) { 
    $command = "ssh {$user}@{$host} ls -l {$dir_path} | wc -l"; 
    $res = (int)system($command); 
    return $res - 1; 
}