Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't figure out how to use CURL's FTP, specifically, how to issue FTP commands from my PHP code:

<?php
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'ftp://ftp.microsoft.com/');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    curl_setopt($ch,CURLOPT_POSTQUOTE,array('CWD bussys/','LIST')); /* ?!! */

    echo '<hr><pre>'.htmlspecialchars(curl_exec($ch)).'</pre><hr>';
?>

In my example above I want to get a directory listing of bussys, but instead I get a listing of the main (FTP root) directory.

By the way, I tried the following combinations:

  • LIST bussys/
  • CWD bussys, LIST -a
share|improve this question
have u tried using the PHP FTP functions instead of using CURL for it? – Sabeen Malik Apr 20 '10 at 8:22
Yeah, but they cause certain problems. Plus, CURL FTP is preferred over the built-in PHP FTP functions for several reasons (including speed and performance). – Christian Apr 20 '10 at 9:37
Try the suggestions from this question: stackoverflow.com/questions/1178425/… – Ezra Jun 19 '11 at 22:09

1 Answer

If you want to work with curl, use CURLOPT_CUSTOMREQUEST options.

See below example code.

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "ftp://192.168.0.129");
curl_setopt($curl, CURLOPT_USERPWD, "sru:sru");
curl_setopt ($curl, CURLOPT_RETURNTRANSFER, 1) ;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'CWD /a'); // change directory
curl_exec($curl);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'MLSD'); // get directory list
$ftp_result=curl_exec($curl);
echo $ftp_result;

It returns

type=dir;modify=20130319024302; test

test is sub directory of a.

I think you have to use ftp_connect rather.

share|improve this answer

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.