How to install APC under PHP 5.6?
APC is installed
apt-get install php-pear php5-dev make libpcre3-dev
pecl install apc
# locate apc.so
/usr/lib/php5/20100525/apc.so
APC is added to php.ini
extension=apc.so
But APC is not mentioned in output from phpinfo()
Fatal error: Call to undefined function apc_fetch()
apc_fetch()
illustrates that. It's still useful in 5.6, but not for opcode cache. – Weltschmerz