uawdijnntqw1x1x1
IP : 216.73.217.25
Hostname : website-1212890-cf6c88c4-nl52g
Kernel : Linux website-1212890-cf6c88c4-nl52g 6.8.0-85-generic #85-Ubuntu SMP PREEMPT_DYNAMIC Thu Sep 18 15:26:59 UTC 2025 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,getmyuid,getmypid,passthru,leak,link,shell_exec,dl,exec,system,highlight_file,source,show_source,fpassthru,virtual,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,phpinfo,disk_free_space,disk_total_space,pclose,popen,putenv,socket_create_listen,socket_listen
OS : Linux
PATH:
/
var
/
cache
/
..
/
run
/
..
/
usr
/
local
/
include
/
..
/
bin
/
docker-php-ext-configure
/
/
#!/bin/sh set -e # prefer user supplied CFLAGS, but default to our PHP_CFLAGS : ${CFLAGS:=$PHP_CFLAGS} : ${CPPFLAGS:=$PHP_CPPFLAGS} : ${LDFLAGS:=$PHP_LDFLAGS} export CFLAGS CPPFLAGS LDFLAGS srcExists= if [ -d /usr/src/php ]; then srcExists=1 fi docker-php-source extract if [ -z "$srcExists" ]; then touch /usr/src/php/.docker-delete-me fi cd /usr/src/php/ext usage() { echo "usage: $0 ext-name [configure flags]" echo " ie: $0 gd --with-jpeg-dir=/usr/local/something" echo echo 'Possible values for ext-name:' find . \ -mindepth 2 \ -maxdepth 2 \ -type f \ -name 'config.m4' \ | xargs -n1 dirname \ | xargs -n1 basename \ | sort \ | xargs echo echo 'Some of the above modules are already compiled into PHP; please check' echo 'the output of "php -i" to see which modules are already loaded.' } ext="$1" if [ -z "$ext" ] || [ ! -d "$ext" ]; then usage >&2 exit 1 fi shift pm='unknown' if [ -e /lib/apk/db/installed ]; then pm='apk' fi if [ "$pm" = 'apk' ]; then if \ [ -n "$PHPIZE_DEPS" ] \ && ! apk info --installed .phpize-deps > /dev/null \ && ! apk info --installed .phpize-deps-configure > /dev/null \ ; then apk add --no-cache --virtual .phpize-deps-configure $PHPIZE_DEPS fi fi if command -v dpkg-architecture > /dev/null; then gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" set -- --build="$gnuArch" "$@" fi cd "$ext" phpize ./configure --enable-option-checking=fatal "$@"
/var/cache/../run/../usr/local/include/../bin/docker-php-ext-configure