从php中的txt文件读取详细信息

时间:2019-04-16 07:00:18

标签: php ubuntu authentication ssh ssh2

我有一个txt文件,其中存储了我的配置详细信息。

confg.txt

10.xx.xx.xx
abc
P@ssword1
/home/user/myfolder

我希望此文件详细信息用于连接到远程计算机。

<?php
$myfile="confg.txt";
$line=file($myfile);
$server   = "$line[0]"; 
$username = "$line[1]"; 
$password = "$line[2]"; 

$connection = ssh2_connect($server, 22);
ssh2_auth_password($connection, $username, $password);
 ssh2_exec($connection,"bash hello.sh");
?>

当我运行php文件时,出现错误:

  

PHP警告:ssh2_auth_password():abc身份验证失败   使用密码

似乎无法正确读取和获取文件。 从那以后,我也尝试过这样做,但是却遇到了同样的错误。因此,与password无关的任何内容,可能无法正确输入。

$server   = "10.xx.xx.xx"; 
$username = "$line[1]"; 
$password = "P@ssword1";

请建议我从txt文件获取详细信息的合适方法。谢谢!

0 个答案:

没有答案