コマンドラインから:
sudo -u apache php -r 'exec("rsync -avi --rsh=\"ssh -o StrictHostKeyChecking=no -p22\" --omit-dir-times /var/www/html/ test@out:/var/www/html/ 2>&1", $a, $n);print_r($a);';
これを返します(そして私はそのような出力が欲しいです):
Array
(
[0] => sending incremental file list
[1] => <f+++++++++ testrsync
[2] =>
[3] => sent 9143 bytes received 47 bytes 18380.00 bytes/sec
[4] => total size is 25642011 speedup is 2790.21
)
しかしApache2から:
exec("rsync -avi --rsh=\"ssh -o StrictHostKeyChecking=no -p22\" --omit-dir-times /var/www/html/ test@out:/var/www/html/ 2>&1", $a, $n);
print_r($a);
私はこの出力を得ます:
array (
0 => 'sending incremental file list',
1 => ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '',
312 => 'sent 139318 bytes received 183398 bytes 215144.00 bytes/sec',
313 => 'total size is 25642011 speedup is 79.46',
)
テストする前にtestrsyncファイルを削除し、ターミナルとブラウザの両方からrsyncがtestrsyncファイルを正常に転送しますが、apache2では次の行は表示されません:
<f+++++++++ testrsync
ブラウザで Rsync によって変更されたファイルのリストを取得したい。
アパッチ/2.2.15、PHP 5.4.20、Centos 6.4