@PhilG Thank you for reaching out to Microsoft Q&A.
Assuming that you are using Azure App service to host your PHP webapp then it is recommended to upgrade the PHP version from 7.4 to PHP>=8.0 versions.
All the earlier versions of PHP 8.0 are EOL on azure app service as mentioned here which means you your applications will continue to run, however any application hosted in App Service targeting PHP < 8.0 will be out of support and at risk of security vulnerabilities that remain unpatched.
Note:
If you are currently targeting Windows for PHP development, we advise to plan for migrating development to target Linux. After November 28 2022, Linux will be the only OS supported by future versions of PHP and continued feature, quality and security updates.
If you want to update your app to different target versions of PHP using Azure portal, you can refer to the below sequence of steps:
- In the Azure portal, click the App Service blade. Select the app you want to update.
- In the Configuration panel, click the General settings tab.
- Under Stack Settings, click the drop-down menu under Minor version and select the PHP version you want (we recommend choosing the most recent version).
- Click Save.
NOTE:
Changing the stack settings of your app will trigger a re-start of your application.
Feel free to reach back to me if you have any further questions on this.