gpt4 book ai didi

amazon-web-services - AWS Lambda 是否支持 PHP?

转载 作者:行者123 更新时间:2023-12-04 07:32:59 25 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

2年前关闭。




Improve this question




我只是 AWS 的初学者。我需要了解 lambda 支持。我正在研究 PHP。
lambda 是否支持 PHP?如果没有,还有其他支持 PHP 的替代解决方案吗?

最佳答案

实际上没有,但自 2018 年 11 月以来,AWS 宣布了 Lambda 层,这基本上是您运行自己的运行时(例如 PHP)的方式。使用 PHP 运行 lambda 有两种简单的方法

1 - 创建您自己的通过 PHP 层的 cloudformation 堆栈,例如 arn:aws:lambda:us-east-1:887080169480:layer:php73:2
类似的东西
模板.yml

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: ''

Resources:
MyFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: 'php-layer'
Description: ''
CodeUri: .
Handler: index.php
Timeout: 10 # Timeout in seconds
MemorySize: 1024 # The memory size is related to the pricing and CPU power
Runtime: provided
Layers:
- 'arn:aws:lambda:us-east-1:887080169480:layer:php73:2'

并创建一个 PHP 文件
索引.php
<?php
echo "Hello from PHP Experience 2019";
?>

创建 AWS s3 存储桶(例如 mybuckettest)

打包的 cloudformation 堆栈
sam package \
--template-file template.yml \
--output-template-file serverless-output.yaml \
--s3-bucket phpex

部署您的堆栈
sam deploy \
--template-file serverless-output.yaml \
--stack-name php-layer \
--capabilities CAPABILITY_IAM

完毕

2 - 使用 bref.sh aws lambda 的一个非常简单的 PHP 框架

关于amazon-web-services - AWS Lambda 是否支持 PHP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44110427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com