$ssh = new shell2();
$ssh->connect($host,$port);
$ssh->auth_pwd($u,$p);
print $ssh->exec_cmd("ls");
แล้วผมเขียนแบบนี้ถูกไหมครับ
Code (PHP)
class centos extends shell2 {
function connect($host,$port=22) {
parent::connect($host,$port);
parent::auth_pwd($u,$p);
print parent::exec_cmd("ls");
}
}
แบบนี้ผมทำถูกหรือเปล่าครับ
ที่มาถามแล้วไม่ได้ลองเพราะว่า เครื่องยังยังไม่มีให้ลองครับ แล้วจะลอง class อื่นก็ไม่รู้จะหา class ไหนมาลอง ยังไงรบกวนด้วยครับ