This topic describes the PHP runtime environment in which you can write function code in Function Compute.
PHP runtime
Function Compute supports the following PHP runtime environment.
PHP version | Operating system | Architecture |
---|---|---|
PHP 7.2 | Linux | x86_64 |
Built-in PHP packages
Function Compute provides the following built-in packages for the PHP runtime environment.
Package | Version | Description |
---|---|---|
oss | v2.4.3 | Object Storage Service (OSS) SDK for PHP |
tablestore | v4.1.1 | TableStore SDK for PHP |
mns | v1.3.5.5 | Message Service (MNS) SDK for PHP |
fc | v1.2.1 | Function Compute SDK for PHP |
Built-in PHP extensions
Built-in extensions
Note If you want to view and print the information about installed PHP extensions, include
print_r(get_loaded_extensions());
in the code of the specified function. bcmath | bz2 | calendar | Core |
ctype | curl | date | dom |
exif | fileinfo | filter | ftp |
gd | gettext | gmp | hash |
iconv | imagick | json | libxml |
mbstring | memcached | mysqli | mysqlnd |
openssl | pcntl | pcre | PDO |
pdo_mysql | Phar | posix | protobuf |
readline | redis | Reflection | session |
shmop | SimpleXML | soap | sockets |
SPL | standard | sysvmsg | sysvsem |
sysvshm | tokenizer | Xdebug | xml |
xmlreader | xmlrpc | xmlwriter | Zend OPcache |
zip | zlib | None | None |
Example
The following sample code uses json
to parse a JSON string and return the parsed content to stdout.
<?php
function handler($event, $context) {
var_dump(json_decode('{"a":123, "b":true, "c":"abcd", "d":{"a":123}}', true));
return "bye";
}
Install non-built-in PHP extensions
To install a non-built-in extension for the PHP runtime, perform the following steps. MongoDB is used in this example.
Prerequisites
- Docker is installed. For more information, see Install Docker.
- A function whose runtime environment is PHP is created. For more information, see Create a function.
Procedure
- Run the following command in a project directory to start the image of the PHP runtime environment and mount the current directory to the /code directory of a container:
sudo docker run -v $(pwd):/code -it --entrypoint="" registry.cn-beijing.aliyuncs.com/aliyunfc/runtime-php7.2:latest bash
Note If your computer runs Windows, you can change$(pwd)
to a specific absolute directory. - Install the MongoDB extension and copy the mongodb.so file to the /code directory.
- Log on to the Function Compute console. In the left-side navigation pane, click Services & Functions.
- In the top navigation bar, select a region. On the Services page, click the desired service.
- On the Functions page of the specified service, click the specified function. On the Code tab, create the extension folder in the directory in which the handler files are stored. Note The extension folder that you create must be at the same level as the bootstrap file.
- Add the mongodb.so file to the extension folder, and create the mongodb.ini file in the extension folder.
- Edit the mongodb.ini file. Add the following content to the mongodb.ini file and save the file:
extension=/code/extension/mongodb.so
If you want to install other custom extensions, click the following links to download the corresponding files based on your business requirements: