Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have written Following code to connect to FTP, which gives me an error "Warning: preg_match() [function.preg-match]: Unknown modifier 'p'"

    <?php

// define some variables
$ftp_server="www.abc.com";
$ftp_user_name="username";
$ftp_user_pass="password";
$local_file = 'L021-D8127-BLUEWASH-2T.jpg';
$server_file = '/abc/photos/L021-D8127-BLUEWASH-2T.jpg';

$conn_id = ftp_connect($ftp_server);

// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

//
//Enable PASV ( Note: must be done after ftp_login() )
//
$mode = ftp_pasv($conn_id, TRUE);

// get contents of the current directory
$contents = ftp_nlist($conn_id, "abc/photos");

// output $contents
//var_dump($contents);

foreach($contents as $file){
if(!preg_match("/L021-D8127-BLUEWASH-([1-9]|10)(T|S)\.jpg/i", $file)){
    // continute if its not the file I want to download

    continute;
}
// try to download file and save to $local_file
if (ftp_get($conn_id, $local_file, file, FTP_BINARY)) {
    echo "Successfully written to $local_file\n";
}
else {
    echo "There was a problem\n";
}
}

// close the connection
ftp_close($conn_id);

?>

On the server in "photos" folder i have multiple instances of same image but with different name sequence like

L021-D8127-BLUEWASH-2T.jpg
L021-D8127-BLUEWASH-3T.jpg
L021-D8127-BLUEWASH-4T.jpg
and so on till 10T.jpg

And similarly ...

L021-D8127-BLUEWASH-2S.jpg
L021-D8127-BLUEWASH-3S.jpg
L021-D8127-BLUEWASH-4S.jpg
and so on till 10S.jpg

My Question is with one single FTP connection open how do i do to ..
1) Check if all occurenes of L021-D8127-BLUEWASH-( 1 t0 10 )T.jpg & L021-D8127-BLUEWASH-( 1 t0 10 )S.jpg Exists.
2) If the Image(s) Exists Download all files matching
3) I do not want to use 20 FTP Connections simultaneously ?

share|improve this question
This is because you are not escaping / in preg_match. I told you this in my answers comment. – shiplu.mokadd.im Feb 12 '12 at 12:11

2 Answers

So what you want to do in your scrip there is call ftp_nlist

$contents = ftp_nlist($conn_id, ".");

And loop through the result set of that.

foreach ($contents as $file) {
   $local_file = '';
   $server_file = '';
   ftp_get($conn_id, $local_file, $server_file, FTP_BINARY)
}

etc...

share|improve this answer
I have edited the question please check – user580950 Feb 13 '12 at 5:58

use ftp_nlist to get a list of files then download it with a loop

$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

// get list of files there
$contents = ftp_nlist($conn_id, ".");

foreach($contents as $file){
if(!preg_match("#IMAGE NAME\-([1-9]|10)(T|S)\.jpg#i", $file)){
    // continute if its not the file I want to download
    continute;
}
// try to download file and save to $local_file
if (ftp_get($conn_id, $local_file, file, FTP_BINARY)) {
    echo "Successfully written to $local_file\n";
}
else {
    echo "There was a problem\n";
}
}
share|improve this answer
The aBc folder is 3 GB in size so i don't want to retrieve/download all the files from that folder, i want to download only few 20 files at a time – user580950 Feb 12 '12 at 10:32
@user580950 Yes, You'll will not download all of them. But you can filter it by looking at the names. See my update. – shiplu.mokadd.im Feb 12 '12 at 10:38
Why minus Vote? Care to explain? – shiplu.mokadd.im Feb 12 '12 at 10:40
I tried to use your code "if(!preg_match("/L021-D8127-BLUEWASH-([1-9]|10)(T|S)\.jpg/", $file)){" it says "system cannot find the file specified" thugh the file exsits – user580950 Feb 12 '12 at 11:10
What is the filename here? – shiplu.mokadd.im Feb 12 '12 at 11:19
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.