将一个域的内容移动到另一个域

时间:2010-10-04 14:15:13

标签: php

如何使用php将一个域的内容复制到另一个域 我用了这个命令

if(!($ stream = ssh2_exec($ con,$ movePathCMD)))  {

                die("fail: unable to execute command");
            } else {

                // collect returning data from command

                  stream_set_blocking($stream, true);
                $data = "";
                while ($buf = fread($stream, 4096)) {
                    $data .= $buf;
                }
                fclose($stream);
            }

&GT?; 但它不是在开玩笑。能否请你为我纠正这个代码。

1 个答案:

答案 0 :(得分:0)

你试过吗

stream_get_contents($stream); 

而不是您的while