Merge pull request #3112 from Yohoed/master

Add php xlswriter extension
This commit is contained in:
Shao Yu-Lung (Allen)
2022-01-11 14:37:53 +08:00
committed by GitHub
5 changed files with 62 additions and 0 deletions

View File

@ -363,6 +363,24 @@ RUN set -eux; \
php -m | grep -oiE '^swoole$'; \
fi
###########################################################################
# xlswriter:
###########################################################################
ARG INSTALL_XLSWRITER=false
RUN set -eux; \
if [ ${INSTALL_XLSWRITER} = true ]; then \
# Install Php xlswriter Extension \
if [ $(php -r "echo PHP_MAJOR_VERSION;") > "5" ]; then \
pecl install xlswriter && \
docker-php-ext-enable xlswriter && \
php -m | grep -q 'xlswriter'; \
else \
echo "PHP Extension for xlswriter is not supported for PHP 5.0"; \
fi \
;fi
###########################################################################
# Taint EXTENSION
###########################################################################