php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #52329
Patch pruftp.txt revision 2010-07-13 13:32 UTC by daniel dot requena at gmail dot com

Patch pruftp.txt for FTP related Bug #52329

Patch version 2010-07-13 13:32 UTC

Return to Bug #52329 | Download this patch
Patch Revisions:

Developer: daniel.requena@gmail.com

$ftp_host = '192.168.1.120';//'ftp.adrive.com';
if(!$connId = ftp_connect($ftp_host))
{
	echo "Not connected to {$ftp_host}!!";
}
else
{	
	echo "Connected!!";
	ftp_close($connId);
}
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 27 01:01:30 2024 UTC