我无法使用ss2_connect()。我已将所有libssh2.dll和php_ssh2.dll复制到php \ ext文件夹,也未注释extension = php_ssh2.dll。
但是获得Error Fatal错误:从代码下面的第2行调用C:\ PHP \ Code \ linux.php中的未定义函数ssh2_connect()。请帮助我吧。
答案 0 :(得分:0)
checklogin.php contents :::
<?php
// username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];
$result1=$myusername.$mypassword;
$result='rsahursahu';
if($result==$result1){
//header("location:emp.php");
header("location:linux.php");
//header("location:file_execute.php");
}
else {
echo "Wrong Username or Password";
}
?>
Linux.php contents::::
<?php
$connection = ssh2_connect('111.111.111.4', 22);
ssh2_auth_password($connection, 'oracle', 'oracle');
$stream = ssh2_exec($connection, 'ls');
?>
&#13;