Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ftp_connect と ftp URLftp://username:password@serverを作成し、curl または file_get_contents を使用してディレクトリを取得する方法のどちらが速いかについて質問があります。
ftp://username:password@server
FTP はUSERおよびPASSコマンドを使用して資格情報を送信するため、提供する URL は、すべてを 1 つの引数にまとめてクライアント API に渡すための便利な方法です (その後、ライブラリは URL を分割し、未加工のソケット通信を行うために必要なパラメーターを抽出します)。 )
USER
PASS
ユーザーとパスワードを受け入れる他の URL (DB 接続文字列など) にも同じことが当てはまります。