/** * @param string $ftp_dsn ftp://user:pass@localhost/ */ public function __construct($ftp_dsn) { $ftp = Ftp::parse_dsn($ftp_dsn); foreach ($ftp as $k => $v) { $this->{$k} = $v; } }