|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-16 18:43 UTC] sniper@php.net
[2001-10-02 04:42 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 00:00:02 2025 UTC |
<html> <body> <?php $conn_id = ftp_connect("ftp.feevale.br"); $login_result = ftp_login($conn_id, "anonymous", "douglas@feevale.br"); echo "/Alexandre_Zeni/Administracao/Produ??o II<BR>\n"; ftp_chdir ($conn_id, "/Alexandre_Zeni/Administracao/Produ??o II"); $ftp_dir_corrente = ftp_pwd($conn_id); $ftp_lista_dir_corrente = ftp_rawlist ($conn_id, $ftp_dir_corrente); echo $ftp_lista_dir_corrente."<BR>\n" ; echo "/Alexandre_Zeni/Administracao/Projetos<BR>\n"; ftp_chdir ($conn_id, "/Alexandre_Zeni/Administracao/Projetos"); $ftp_dir_corrente = ftp_pwd($conn_id); $ftp_lista_dir_corrente = ftp_nlist ($conn_id, $ftp_dir_corrente); echo $ftp_lista_dir_corrente."<BR>\n" ; ftp_quit($conn_id); ?> </body> </html>