Create a PHP app in the App Engine flexible environment
Region ID
TheREGION_ID is an abbreviated code that Google assignsbased on the region you select when you create your app. The code does notcorrespond to a country or province, even though some region IDs may appearsimilar to commonly used country and province codes. For apps created after February 2020,REGION_ID.r is included in App Engine URLs. For existing apps created before this date, the region ID is optional in the URL.
Learn moreabout region IDs.
This quickstart demonstrates how to create and deploy an app that displays ashort message. You can use the sample application in this quickstart for anysupported version ofPHP, by specifying the runtime versionand operating system in yourapp.yamlfile.
Before you begin
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
Note: If you don't plan to keep the resources that you create in this procedure, create a project instead of selecting an existing project. After you finish these steps, you can delete the project, removing all resources associated with the project.Roles required to select or create a project
- Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
- Create a project: To create a project, you need the Project Creator role (
roles/resourcemanager.projectCreator), which contains theresourcemanager.projects.createpermission.Learn how to grant roles.
Verify that billing is enabled for your Google Cloud project.
Enable the Cloud Build API.
Roles required to enable APIs
To enable APIs, you need the Service Usage Admin IAM role (
roles/serviceusage.serviceUsageAdmin), which contains theserviceusage.services.enablepermission.Learn how to grant roles.Install the Google Cloud CLI.
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
Toinitialize the gcloud CLI, run the following command:
gcloudinit
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
Note: If you don't plan to keep the resources that you create in this procedure, create a project instead of selecting an existing project. After you finish these steps, you can delete the project, removing all resources associated with the project.Roles required to select or create a project
- Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
- Create a project: To create a project, you need the Project Creator role (
roles/resourcemanager.projectCreator), which contains theresourcemanager.projects.createpermission.Learn how to grant roles.
Verify that billing is enabled for your Google Cloud project.
Enable the Cloud Build API.
Roles required to enable APIs
To enable APIs, you need the Service Usage Admin IAM role (
roles/serviceusage.serviceUsageAdmin), which contains theserviceusage.services.enablepermission.Learn how to grant roles.Install the Google Cloud CLI.
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
Toinitialize the gcloud CLI, run the following command:
gcloudinit
Required roles
To get the permissions that you need to complete this quickstart, ask your administrator to grant you the following IAM roles:
- App Engine Admin (
roles/appengine.appAdmin) on the project - Cloud Build Editor (
roles/cloudbuild.builds.editor) on the project - Storage Object Admin (
roles/storage.objectAdmin) on the project - Logs Viewer (
roles/logging.viewer) on the project - Service Account User (
roles/iam.serviceAccountUser) on the service account - Ask your administrator to grant the following roles for the App Engine default service account:
- Artifact Registry Reader (
roles/artifactregistry.reader) on the project - Cloud Build Service Account (
roles/cloudbuild.builds.builder) on the project - Storage Object Viewer (
roles/storage.objectViewer) on the project
- Artifact Registry Reader (
For more information about granting roles, seeManage access to projects, folders, and organizations.
You might also be able to get the required permissions throughcustom roles or otherpredefined roles.
Additional prerequisites
Initialize your App Engine app with your project and choose its region:
gcloud app create --project=[YOUR_PROJECT_ID]When prompted, select theregionwhere you want to locate your App Engine application.
Caution: You cannot change an app's regiononce it has been set.Install the following on your local machine:
- Downloadand install Git.
- InstallPHP
To manage dependencies,download Composer and make sure the Composer executable isinstalled globally.
App Engine locations
App Engine isregional, which means the infrastructure that runs your apps islocated in a specific region, and Google manages it so that it is availableredundantly acrossall of the zones within that region.
Meeting your latency, availability, or durability requirements are primaryfactors for selecting the region where your apps are run. You can generallyselect the region nearest to your app's users, but you should considerthelocations where App Engine is availableas well as thelocations of the otherGoogle Cloud products and services that your app uses. Using servicesacross multiple locations can affect your app's latency as well as itspricing.
You cannot change an app's region after you set it.
Note: Two locations, which are calledeurope-west andus-central in App Engine commands and in the Google Cloud console,are calledeurope-west1 andus-central1, respectively,elsewhere in Google documentation.If you already created an App Engine application, you can view itsregion by doing one of the following:
Run the
gcloud app describecommand.Open theApp Engine Dashboard in the Google Cloud console.The region appears near the top of the page.
Download the Hello World app
We've created a Hello World app for App Engine so you can quicklyget a feel for deploying an app to the Google Cloud.
Clone the Hello World sample app repository to your local machine.
git clone https://github.com/GoogleCloudPlatform/php-docs-samples.gitAlternatively, you candownload the sample as a zip file and extract it.
Change to the directory that contains the sample code.
cd php-docs-samples/appengine/flexible/helloworld
Run Hello World on your local machine
To run the Hello World app on your local computer:
Install dependencies.
composer installStart a local web server.
php -S localhost:8080 -t web/In your web browser, enter the following address:
TheHello World message from the sample app displays on the page. In yourterminal window, pressCtrl+C to exit the web server.
Deploy and run Hello World on App Engine
To deploy your app to the App Engine flexible environment:Deploy the Hello World app by running the following command from the
appengine/flexible/helloworlddirectory:gcloudappdeploy
Learn about the optional flags.
Common
gcloudcommand flags- Include the
--versionflag to specify an ID that uniquely identifies that version of your app, otherwise one is generated for you. Example:--version [YOUR_VERSION_ID] - Include the
--projectflag to specify an alternate Google Cloud project ID to what you initialized as the default in thegcloudtool. Example:--project [YOUR_PROJECT_ID]
Example:
gcloud app deploy --version pre-prod-5 --project my-sample-app
To learn more about deploying your app from the command line, seeTesting and Deploying Your App. For a list of all the command flags, see the
gcloud app deployreference.- Include the
Launch your browser to view the app at
https://PROJECT_ID.REGION_ID.r.appspot.com wheregcloudappbrowse
PROJECT_IDrepresents your Google Cloud project ID.
This time, the page that displays the Hello World message is delivered by aweb server running on an App Engine instance.
Congratulations! You've deployed your first App Engine app to theApp Engine flexible environment!
If you encountered any errors deploying your application, check thetroubleshooting tips.See the following sections for information about cleaning up as well as links topossible next steps that you can take.
Clean up
To avoid incurring charges, you can delete your Google Cloud project to stopbilling for all the resources used within that project.
What's next
Learn the whole platform
Now that you know what it's like to develop and deploy App Engine apps,you can explore the rest of Google Cloud. You already have theGoogle Cloud CLI installed which gives you the tools to interact withproducts like Cloud SQL, Cloud Storage, Firestore,and more.
Learn about the App Engine flexible environment
Here are some topics to help continue your learning about App Engine:
Hello World code review
Hello World is the simplest possible App Engine app, as it contains onlyone service, has only one version, and all of the code is located within theapp's root directory. This section describes each of the app files in detail.
index.php
Theindex.php file contains the PHP code to start a server and respond torequests. This example usesSlim,but you can use otherPHP web frameworks.
This code creates a new SlimApplication object and then defines two differentGET routes:
require_once __DIR__ . '/../vendor/autoload.php';use Psr\Http\Message\ServerRequestInterface as Request;use Psr\Http\Message\ResponseInterface as Response;use Slim\Factory\AppFactory;// Create App$app = AppFactory::create();// Display errors$app->addErrorMiddleware(true, true, true);$app->get('/', function (Request $request, Response $response) { $response->getBody()->write('Hello World'); return $response;});$app->get('/goodbye', function (Request $request, Response $response) { $response->getBody()->write('Goodbye World'); return $response;});// @codeCoverageIgnoreStartif (PHP_SAPI != 'cli') { $app->run();}// @codeCoverageIgnoreEndreturn $app;app.yaml
Theapp.yamlfile describes the following configuration for your app:
- Sets
env: flex, indicating your app uses theApp Engine flexible environment. Specifies the runtime used by the app.
runtime:phpenv:flexruntime_config:document_root:weboperating_system:ubuntu22runtime_version:8.4# This sample incurs costs to run on the App Engine flexible environment.# The settings below are to reduce costs during testing and are not appropriate# for production use. For more information, see:# https://cloud.google.com/appengine/docs/flexible/php/configuring-your-app-with-app-yamlmanual_scaling:instances:1resources:cpu:1memory_gb:0.5disk_size_gb:10For more information on how the PHP runtime works, seeThe PHP runtime.
For more details about how to design your app to take advantage of versionsand services, seeAn overview of App Engine.
For more details about the configuration settings for App Engine, seeConfiguring your app with app.yaml.
composer.jsoncomposer.jsonis used to declare, install, and update application dependencies:{"require":{"slim/slim":"^4.0","slim/psr7":"^1.3"}}
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-15 UTC.