<?php
/**
* @ASCOOS-NAME : Ascoos OS
* @ASCOOS-VERSION : 26.0.0
* @ASCOOS-SUPPORT : [email protected]
* @ASCOOS-BUGS : https://issues.ascoos.com
*
* @desc <English> Demonstrates establishing an FTP or SFTP connection using the connect method.
* @desc <Greek> ??????????? ?? ?????????? ???????? FTP ? SFTP ??????????????? ?? ?????? connect.
*
* @since PHP 8.2.0
*/
use ASCOOS\OS\Kernel\Net\TFTPHandler;
global $conf, $AOS_CACHE_PATH, $AOS_LOGS_PATH;
// <English> Initialize properties array with configuration
// <Greek> ???????????? ?????? ????????? ?? ??????????
$properties = [
'ftp' => [
'protocol' => 'sftp',
'host' => 'example.com',
'port' => 22,
'username' => 'user',
'password' => 'pass',
'useSSL' => false
],
'logs' => ['useLogger' => true, 'dir' => $AOS_LOGS_PATH],
'cache' => ['cacheType' => 'file', 'cachePath' => $AOS_CACHE_PATH]
];
// <English> Create a new TFTPHandler instance
// <Greek> ?????????? ???? instance ??? TFTPHandler
$ftpHandler = new TFTPHandler($properties);
// <English> Establish connection to the server
// <Greek> ?????????? ???????? ???? ??????????
if ($ftpHandler->connect('example.com', 22, 'user', 'pass', false)) {
echo "Connected successfully to example.com\n";
} else {
echo "Failed to connect to example.com\n";
}
// <English> Free resources
// <Greek> ???????????? ?????
$ftpHandler->Free($ftpHandler);
?>
|