Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions _posts/2026-04-10-php85-available.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "PHP 8.5 is now available on Azure App Service for Linux"
author_name: "Tulika Chaudharie"
toc: true
toc_sticky: true
---

PHP 8.5 is now available on Azure App Service for Linux across all public regions. You can create a new PHP 8.5 app through the Azure portal, automate it with the Azure CLI, or deploy using ARM/Bicep templates.

PHP 8.5 brings several useful runtime improvements. It includes **better diagnostics**, with fatal errors now providing a backtrace, which can make troubleshooting easier. It also adds the **pipe operator (`|>`)** for cleaner, more readable code, along with broader improvements in syntax, performance, and type safety. You can take advantage of these improvements while continuing to use the deployment and management experience you already know in App Service.

For the full list of features, deprecations, and migration notes, see the official PHP 8.5 release page:
[https://www.php.net/releases/8.5/en.php](https://www.php.net/releases/8.5/en.php)

### Getting started

1. [Create a PHP web app in Azure App Service](https://learn.microsoft.com/azure/app-service/quickstart-php?tabs=cli&pivots=platform-linux)
2. [Configure a PHP app for Azure App Service](https://learn.microsoft.com/azure/app-service/configure-language-php?pivots=platform-linux)
Loading