lyhiving / sshconf
PHP ssh 配置解析器
v1.1
2022-04-20 09:50 UTC
Requires
- php: >=7.1
- ext-gd: *
README
了解更多关于 SSH 配置文件的信息:https://linux.die.net/man/5/ssh_config
安装
Composer
composer require lyhiving/sshconf
{ "require": { "lyhiving/sshconf": "1.*" } }
使用方法
<?php use lyhiving\sshconf\sshconf; $sshconf = new sshconf(__DIR__ . "/#remotessh.txt"); var_dump($sshconf->gets());
注意事项
主要部分来自@m4rku5。我使其易于使用。