Install APCU (with PECL) for All PHP Version

slvmr

Verified User
Joined
Jul 31, 2020
Messages
8
Hello There!

I tried to install APCU with "pecl install apcu-5.1.18" command. I installed successfully but this command installed only for php 7.2 version. How can i install apcu for all php versions?

Thanks.
 
run pecl for each PHP version, like:
/usr/local/php72/bin/pecl install apcu
/usr/local/php56/bin/pecl install apcu
etc.
 
Back
Top