In GAE Std, for php72, the default session store is configured. This default is `session.save_handler=files` which uses /tmp to store session files.
In GAE Std, each instance has its own /tmp and the /tmp is empty on any cold start. So this is not really a viable option for session storage (e.g., different requests from the same user may land on different instances, and thus different sessions).
You can use php.ini to configure an alternative (e.g., MySQL on Cloud SQL, or Cloud Memorystore), but you need to do some set up work (e.g., create a Cloud SQL instance, configure access).
We need to have better documentation about this; I will create an internal bug to have some created.