PHP를 통한 SSH 명령 실행 방법 PHP를 통한 SSH out을 기대하고 있습니다.이를 위한 최선의/가장 안전한 방법은 무엇입니까?제가 할 수 있는 일: shell_exec("SSH user@host.com mkdir /testing"); 더 좋은 건 없어?너무 '귀엽다' :)순수 PHP SSH 구현인 phpseclib을 사용합니다.예: SSH2 확장을 사용할 수 있습니까? 문서: http://www.php.net/manual/en/function.ssh2-exec.php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); $stream = ssh2_exec..