安装redis失败

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-06 13:53:071064Durchsuche

php下载 dll文件

http://download.csdn.net/download/bluesky321/5355093

php_redis.dll 扩展 For PHP5.4.x

首先把php_redis.dll 和 php_igbinary.dll 放入PHP的ext文件夹,然后在php.ini配置文件里添加如下代码:

extension=php_igbinary.dll

extension=php_redis.dll

重启web服务器

代码如下

<code>$redis = new Redis();
$redis->connect('127.0.0.1',6379);
$redis->set('test','hello redis');
echo $redis->get('test');</code>

?>
提示Fatal error: Class 'Redis' not found in D:xampphtdocsindex.php on line 2

回复内容:

php下载 dll文件

http://download.csdn.net/download/bluesky321/5355093

php_redis.dll 扩展 For PHP5.4.x

首先把php_redis.dll 和 php_igbinary.dll 放入PHP的ext文件夹,然后在php.ini配置文件里添加如下代码:

extension=php_igbinary.dll

extension=php_redis.dll

重启web服务器

代码如下

<code>$redis = new Redis();
$redis->connect('127.0.0.1',6379);
$redis->set('test','hello redis');
echo $redis->get('test');</code>

?>
提示Fatal error: Class 'Redis' not found in D:xampphtdocsindex.php on line 2

有三种方法可以检查你的PHP扩展有没有打开:
1.phpinfo();
2.命令行cd到php执行文件目录,输入:php -m
3.用以下代码:

<code><?php if (extension_loaded('redis'))
{
    echo 'YES';
}
else
{
    echo 'NO';
}
?></code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn