来自命令行:
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获取修改过的文件列表。
Apache / 2.2.15,PHP 5.4.20,Centos 6.4
答案 0 :(得分:1)
您可以将该文件(使用php标头)保存为 .txt而不是html或php 。浏览器中不会形成任何形式
答案 1 :(得分:0)
发现问题:
Rsync输出如下所示:
[1] => <f..t...... logo-1.png
[2] => <f..t...... logo.png
和浏览器解析&lt;作为新标签,所以我得到空输出,但源代码显示完整输出。我花了一个多小时来调试它; D