我有一个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文件获取详细信息的合适方法。谢谢!