代码: wget http://pecl.php.net/get/APC-3.1.13.tgz tar zxf APC-3.1.13.tgz cd APC-3.1.13 /usr/local/php/bin/phpize ./configure --enable-apc --enable-apc-mmap \ --with-php-config=/usr/local/php/bin/php-config \ --prefix=/usr/local/apc make make install cd ../ 编辑php.in 代码: [apc] extension="apc.so" apc.enabled = 1 apc.cache_by_default = on apc.shm_segments = 1 apc.shm_size = 64M apc.ttl = 7200 apc.user_ttl = 7200 apc.num_files_hint = 0 apc.write_lock = On service php-fpm reload