Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Last active September 23, 2023 06:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitHub30/2d51bfa327a6eddbde33b77214511584 to your computer and use it in GitHub Desktop.
Save GitHub30/2d51bfa327a6eddbde33b77214511584 to your computer and use it in GitHub Desktop.
cd
VERSION=$(php -r 'echo phpversion();')
wget https://www.php.net/distributions/php-$VERSION.tar.gz
tar xf php-$VERSION.tar.gz
cd php-$VERSION/ext/pdo_mysql
phpize
./configure
make
make test
make install
sed -i 's/;extension=pdo_mysql/extension=pdo_mysql/' /opt/php/$VERSION/ini/php.ini
php -i | grep drivers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment