/home/test # uname -a Linux 8eca89f4b8e8 5.10.76-linuxkit #1 SMP Mon Nov 8 10:21:19 UTC 2021 x86_64 Linux /home/test # cat /etc/os-release NAME="Alpine Linux" ID=alpine VERSION_ID=3.15.0_alpha20210804 PRETTY_NAME="Alpine Linux edge" HOME_URL="https://alpinelinux.org/" BUG_REPORT_URL="https://bugs.alpinelinux.org/" /home # apk add libcouchbase fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz (1/3) Installing libgcc (11.2.1_git20220219-r1) (2/3) Installing libstdc++ (11.2.1_git20220219-r1) (3/3) Installing libcouchbase (3.2.5-r0) OK: 60 MiB in 20 packages /home # apk add php7 (1/9) Installing php7-common (7.4.28-r0) (2/9) Installing argon2-libs (20190702-r1) (3/9) Installing ncurses-terminfo-base (6.3_p20220219-r0) (4/9) Installing ncurses-libs (6.3_p20220219-r0) (5/9) Installing libedit (20210910.3.1-r0) (6/9) Installing pcre2 (10.39-r0) (7/9) Installing xz-libs (5.2.5-r0) (8/9) Installing libxml2 (2.9.12-r3) (9/9) Installing php7 (7.4.28-r0) Executing busybox-1.33.1-r4.trigger OK: 71 MiB in 29 packages /home # apk add php7-pecl-couchbase (1/3) Installing php7-json (7.4.28-r0) (2/3) Installing php7-pecl-igbinary (3.2.7-r0) (3/3) Installing php7-pecl-couchbase (3.2.2-r0) OK: 72 MiB in 32 packages /home # cat index.php PHP - Hello, World!

credentials("Administrator", "XXXXXXXXXX"); $cluster = new \Couchbase\Cluster($connectionString, $options); // get a bucket reference $bucket = $cluster->bucket("travel-sample"); // get a default collection reference $collection = $bucket->defaultCollection(); // get document $documentKey = "airline_10"; $getResult = $collection->get($documentKey); //echo $getResult echo "document \"$documentKey\" has been fetched!\n"; print_r( $getResult->content() ); ?> /home # php7 index.php PHP - Hello, World!

Hello, World!

document "airline_10" has been fetched! Array ( [id] => 10 [type] => airline [name] => 40-Mile Air [iata] => Q5 [icao] => MLA [callsign] => MILE-AIR [country] => United States )