我是php新手并试图与路由器建立ssh连接。那么函数" expect_popen()"或" fopen()"我应该用? 它们之间有什么区别。我应该使用哪一个与路由器建立ssh连接?
expect_popen("ssh -o ConnectTimeout=$this->connectTimeout $this-
>userName@$this hostName -p $this->port -s netconf");
$this->stream = fopen("expect://ssh -o ConnectTimeout=$this->connectTimeout
$this->userName@$this->hostName -p $this->port -s
netconf", "rw");
目前我在我的代码中使用expect_popen(),但看到了这个问题:https://bugs.php.net/bug.php?id=57918 仍然不确定我是否应该将代码移动到fopen()或不是。