PHP 7 FTP 扩展未加载 Windows 7
PHP 7 FTP extension is not loaded in Windows 7
我最近在 Windows 7 OS(32 位)中安装了 PHP 7。我将 FTP 库 nicolab/php-ftp-client 用于 FTP 函数,但出现
异常
Fatal error: Uncaught FtpClient\FtpException: FTP extension is not
loaded! in
而且我看到了代码,有
if (!extension_loaded('ftp')) {
throw new FtpException('FTP extension is not loaded!');
}
所以我通过php
检查了加载的扩展
C:\Users\Tamil>php -m
[PHP Modules]
bcmath
calendar
Core
ctype
curl
date
dom
exif
filter
gd
hash
iconv
intl
json
libxml
mbstring
mcrypt
mysqli
mysqlnd
openssl
pcre
PDO
pdo_mysql
pdo_sqlite
Phar
Reflection
session
SimpleXML
soap
SPL
sqlite3
standard
tokenizer
wddx
xml
xmlreader
xmlwriter
xsl
zip
zlib
[Zend Modules]
没有 ftp 扩展名。但是在 PHP 站点 http://php.net/manual/en/ftp.installation.php
The Windows version of PHP has built-in support for this extension.
You do not need to load any additional extensions in order to use
these functions.
我多次重启apache。仍显示 FTP 异常错误。你能指导我解决这个问题吗?
PHP版本是
C:\Users\Tamil>php -v
PHP 7.0.0 (cli) (built: Dec 3 2015 11:36:59) (ZTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies
对我的系统进行的快速测试显示了同样的问题:
C:\>php -v
PHP 7.0.0 (cli) (built: Dec 3 2015 11:36:58) ( NTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies
with Xdebug v2.4.0RC2, Copyright (c) 2002-2015, by Derick Rethans
C:\>php --ri ftp
Extension 'ftp' not present.
查看 ext
文件夹显示 php_ftp.dll
。在 php.ini
中启用它并重新运行上面的代码会得到:
C:\>php --ri ftp
ftp
FTP support => enabled
FTPS support => enabled
所以,启用扩展程序就可以了。
我最近在 Windows 7 OS(32 位)中安装了 PHP 7。我将 FTP 库 nicolab/php-ftp-client 用于 FTP 函数,但出现
异常Fatal error: Uncaught FtpClient\FtpException: FTP extension is not loaded! in
而且我看到了代码,有
if (!extension_loaded('ftp')) {
throw new FtpException('FTP extension is not loaded!');
}
所以我通过php
检查了加载的扩展C:\Users\Tamil>php -m
[PHP Modules]
bcmath
calendar
Core
ctype
curl
date
dom
exif
filter
gd
hash
iconv
intl
json
libxml
mbstring
mcrypt
mysqli
mysqlnd
openssl
pcre
PDO
pdo_mysql
pdo_sqlite
Phar
Reflection
session
SimpleXML
soap
SPL
sqlite3
standard
tokenizer
wddx
xml
xmlreader
xmlwriter
xsl
zip
zlib
[Zend Modules]
没有 ftp 扩展名。但是在 PHP 站点 http://php.net/manual/en/ftp.installation.php
The Windows version of PHP has built-in support for this extension. You do not need to load any additional extensions in order to use these functions.
我多次重启apache。仍显示 FTP 异常错误。你能指导我解决这个问题吗?
PHP版本是
C:\Users\Tamil>php -v
PHP 7.0.0 (cli) (built: Dec 3 2015 11:36:59) (ZTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies
对我的系统进行的快速测试显示了同样的问题:
C:\>php -v
PHP 7.0.0 (cli) (built: Dec 3 2015 11:36:58) ( NTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies
with Xdebug v2.4.0RC2, Copyright (c) 2002-2015, by Derick Rethans
C:\>php --ri ftp
Extension 'ftp' not present.
查看 ext
文件夹显示 php_ftp.dll
。在 php.ini
中启用它并重新运行上面的代码会得到:
C:\>php --ri ftp
ftp
FTP support => enabled
FTPS support => enabled
所以,启用扩展程序就可以了。