Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
echo "<pre>";
var_dump( get_loaded_extensions() );
echo "</pre>";
$ftp['user'] = 'xxx';
$ftp['passwd'] = 'xxx';
$ftp['host'] = 'xxx.de';
$ftp['pfad'] = '/xxx/';
$ftp['file'] = 'xxx.txt';
$ftpFile = 'xxx.txt';
Function curlDownload($ftp,$ftpFile)
{
$fp= fopen($ftpFile, "w");
$url="ftp://".$ftp['user'].":".$ftp['passwd']."@".$ftp['host'].":21" .
$ftp['pfad'].$ftp['file'];
$handle = curl_init();
curl_setopt($handle, CURLOPT_URL, $url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($handle, CURLOPT_UPLOAD, 0);
curl_setopt($handle, CURLOPT_FILE, $fp);
$result = curl_exec($handle);
$info = curl_getinfo ($handle);
curl_close($handle);
return $info;
}
$info = curlDownload($ftp,$ftpFile);
echo "$info";