|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-21 02:40 UTC] axel at mail2000 dot ru
[2002-11-21 06:00 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 18 18:00:01 2025 UTC |
I've tried this code on IIS5 $c = ftp_connect('127.0.0.1',21); $lrez = ftp_login($c,'anonymous',''); if ($c and $lrez) { echo 'Connected<BR>'; print_r(ftp_rawlist($c,'/incoming')); echo '<BR>'; print_r(ftp_nlist($c,'/incoming')); } echo '<BR>Bye...'; ftp_close($c); it results to Connected Bye...