Last active
September 23, 2023 06:21
-
-
Save GitHub30/2d51bfa327a6eddbde33b77214511584 to your computer and use it in GitHub Desktop.
curl -L https://gist.githubusercontent.com/GitHub30/2d51bfa327a6eddbde33b77214511584/raw/install_pdo_mysql.gh-codespaces.sh | bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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