IE盒子

搜索
查看: 99|回复: 1

docker-docker中如何给PHP安装扩展

[复制链接]

6

主题

9

帖子

21

积分

新手上路

Rank: 1

积分
21
发表于 2023-4-11 09:44:10 | 显示全部楼层 |阅读模式
1.执行命令直接安装
root@506a8f5db441:/usr/src# docker-php-ext-install intl
Configuring for:
PHP Api Version:         20220829
Zend Module Api No:      20220829
Zend Extension Api No:   420220829
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking for system library directory... lib
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20220829
checking for PHP installed headers prefix... /usr/local/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking whether to enable internationalization support... yes, shared
checking for icu-uc >= 50.1 icu-io icu-i18n... no
configure: error: Package requirements (icu-uc >= 50.1 icu-io icu-i18n) were not met:

No package 'icu-uc' found
No package 'icu-io' found
No package 'icu-i18n' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables ICU_CFLAGS
and ICU_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.报错:
No package 'icu-uc' found
No package 'icu-io' found
No package 'icu-i18n' found安装libicu-dev解决以上报错:
root@506a8f5db441:/usr/src# apt-get install libicu-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  icu-devtools libicu63
Suggested packages:
  icu-doc
The following NEW packages will be installed:
  icu-devtools libicu-dev libicu63
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.7 MB of archives.
After this operation, 76.1 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.aliyun.com/debian buster/main amd64 libicu63 amd64 63.1-6+deb10u3 [8293 kB]
Get:2 http://mirrors.aliyun.com/debian buster/main amd64 icu-devtools amd64 63.1-6+deb10u3 [189 kB]
Get:3 http://mirrors.aliyun.com/debian buster/main amd64 libicu-dev amd64 63.1-6+deb10u3 [9183 kB]
Fetched 17.7 MB in 53s (331 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libicu63:amd64.
(Reading database ... 15257 files and directories currently installed.)
Preparing to unpack .../libicu63_63.1-6+deb10u3_amd64.deb ...
Unpacking libicu63:amd64 (63.1-6+deb10u3) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../icu-devtools_63.1-6+deb10u3_amd64.deb ...
Unpacking icu-devtools (63.1-6+deb10u3) ...
Selecting previously unselected package libicu-dev:amd64.
Preparing to unpack .../libicu-dev_63.1-6+deb10u3_amd64.deb ...
Unpacking libicu-dev:amd64 (63.1-6+deb10u3) ...
Setting up libicu63:amd64 (63.1-6+deb10u3) ...
Setting up icu-devtools (63.1-6+deb10u3) ...
Setting up libicu-dev:amd64 (63.1-6+deb10u3) ...
Processing triggers for libc-bin (2.31-13+deb11u5) ...2.继续安装intl
root@506a8f5db441:/usr/src# docker-php-ext-install intl
Configuring for:
PHP Api Version:         20220829
Zend Module Api No:      20220829
Zend Extension Api No:   420220829
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
... ...
... ...
(cd .libs && rm -f intl.la && ln -s ../intl.la intl.la)
/bin/bash /usr/src/php/ext/intl/libtool --mode=install cp ./intl.la /usr/src/php/ext/intl/modules
cp ./.libs/intl.so /usr/src/php/ext/intl/modules/intl.so
cp ./.libs/intl.lai /usr/src/php/ext/intl/modules/intl.la
PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/intl/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/src/php/ext/intl/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------

Build complete.
Don't forget to run 'make test'.

+ strip --strip-all modules/intl.so
Installing shared extensions:     /usr/local/lib/php/extensions/no-debug-non-zts-20220829/
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o -o -name \*.dep | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la      modules/* libs/*
rm -f ext/opcache/jit/zend_jit_x86.c
rm -f ext/opcache/jit/zend_jit_arm64.c
rm -f ext/opcache/minilua3.查看PHP扩展
root@506a8f5db441:/usr/src# php -m
[PHP Modules]
Core
ctype
curl
date
dom
fileinfo
filter
ftp
gd
hash
iconv
intl
json
libxml
mbstring
mysqlnd
openssl
pcre
PDO
pdo_sqlite
Phar
posix
random
readline
Reflection
session
SimpleXML
sodium
SPL
sqlite3
standard
tokenizer
xml
xmlreader
xmlwriter
zlib

[Zend Modules]
回复

使用道具 举报

2

主题

6

帖子

12

积分

新手上路

Rank: 1

积分
12
发表于 2025-3-13 05:20:23 | 显示全部楼层
小白一个 顶一下
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表