PHP 8.4.1 Released!

インストール手順

PHP で FTP 関数を使用するには、PHP をインストールする際に --enable-ftp オプションを追加する必要があります。

Autotoolsでは、 --with-openssl オプションを使用して openssl 拡張機能とともにビルドする場合、FTP SSLサポートは自動的に有効になります。 openssl 拡張機能なしでビルドする場合は、--with-ftp-ssl Autotools オプションを使用することで、明示的にFTP SSLサポートを有効にできます。

Windows 版の PHP では、 この拡張モジュールは共有モジュールとしてビルドされます。 これらの関数を使うには、php.ini でモジュールを有効にする必要があります。

変更履歴

バージョン 説明
8.4.0 --with-openssl-dir Autotoolオプションは、削除され、 openssl 拡張機能なしでビルドする場合に、FTP SSLサポートを明示的に有効化する --with-ftp-ssl オプションが追加されました。

add a note

User Contributed Notes 2 notes

up
26
i_djon at hotmail dot com
7 years ago
For some reason folks downvoted the previous entry for this, BUT... indeed, as of PHP 7, to enable this on Windows you have to add the line:

extension=php_ftp.dll

to your php.ini to resolve PHP errors that tell you PHP FTP functions are not defined; the line isn't in there (where, many things are and are just commented out).
up
-4
julian_de_vries at gmx dot de
8 years ago
If you are using PHP 7 under Windows you have to enable ftp in php.ini with extension=php_ftp.dll.
To Top