Configuring phpredis extension under Mac

WBOY
Release: 2016-08-08 09:19:41
Original
744 people have browsed it

 Recently, the development environment has been transferred from Windows to Mac, and all environments have to be reconfigured. Since Mac is based on a Unix system and I am not familiar with it, I encountered a lot of problems.

 Install phpredis extension:

  First of all, everyone downloads the phpredis extension package. This is the address https://nodeload.github.com/nicolasff/phpredis/zip/master (it is recommended that you download it manually and then copy it).

 Secondly, everyone uses the command to enter the folder

<span> 1</span> cd phpredis-master/  
<span> 2</span><span>phpize命令(命令可能会出问题)
</span><span> 3</span> ./configure --with-php-c/bin/php-<span>config
</span><span> 4</span><span>make</span><span> 5</span><span>sudo</span><span>make</span><span>install</span><span> (依次执行上面的命令)
</span><span> 6</span><span># 这时候会提示一个路径
</span><span> 7</span> # /usr/lib/php/extensions/no-debug-non-zts-<span>20100525</span>/
<span> 8</span><span># 表示已经将扩展放置在该位置
</span><span> 9</span> vim /etc/<span>php.ini
</span><span>10</span><span>#增加如下内容
</span><span>11</span> extension=<span>redis.so
</span><span>12</span><span>#重启apache
</span><span>13</span><span>sudo</span><span> apachectl restart
</span><span>14</span><span>#查看扩展安装情况
</span><span>15</span> php -m |<span>grep</span><span> redis
</span><span>16</span> #出现 redis 表示安装成功
Copy after login

Please note that there may be errors when executing the phpize command. Please refer to:

Reference: http://my.oschina.net/Twitter/blog/287544

The above introduces the configuration of phpredis extension under Mac, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!