Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

shantanu oak http://oksoft.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

FTP to get a file from within PHP

   1  
   2  $conn_id = ftp_connect("www.yoursite.com");
   3  $login_result = ftp_login($conn_id, "username", "password");
   4  
   5  if ((!$conn_id) || (!$login_result)) {
   6  echo "FTP connection has failed!";
   7  exit;
   8  } else {
   9  echo "Connected";
  10  }
  11  
  12  // get the file
  13  $local = fopen("local.txt","w");
  14  $result = ftp_fget($conn_id, $local,"httpdocs/trlog.txt", FTP_BINARY);
  15  
  16  // check upload status
  17  if (!$result) {
  18  echo "FTP download has failed!";
  19  } else {
  20  echo "Downloaded ";
  21  }
  22  
  23  // close the FTP stream
  24  ftp_close($conn_id);
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS