{"id":30205,"date":"2026-02-10T14:00:00","date_gmt":"2026-02-10T13:00:00","guid":{"rendered":"https:\/\/www.firestorm.ch\/?p=30205"},"modified":"2026-02-10T13:18:34","modified_gmt":"2026-02-10T13:18:34","slug":"php-85-now-available","status":"publish","type":"post","link":"https:\/\/www.firestorm.ch\/en\/news\/php-85-now-available\/","title":{"rendered":"PHP 8.5 now available on all FireStorm servers"},"content":{"rendered":"<p>PHP 8.5 is here \u2013 and it&#8217;s the fastest, most secure, and most modern PHP update yet. PHP 8.5 is now available on <strong>all FireStorm servers<\/strong>. Whether you run a small business website, a blog, or a large online store: switching to PHP 8.5 makes your website ready for the future.<\/p>\n<p>PHP is the programming language behind over 75% of all websites \u2013 including WordPress, WooCommerce, Joomla, Drupal, TYPO3, and many more CMS platforms. When PHP gets faster, <strong>your entire website gets faster<\/strong>.<\/p>\n<div style=\"text-align:center;margin:30px 0;\">\n<a href=\"https:\/\/www.firestorm.ch\/en\/webhosting\/\" style=\"display:inline-block;background:#197dc8;color:#fff;padding:18px 40px;border-radius:50px;text-decoration:none;font-size:20px;font-weight:bold;box-shadow:0 4px 15px rgba(25,125,200,0.4);\">Order PHP 8.5 Hosting Now<\/a>\n<\/div>\n<p>&nbsp;<\/p>\n<h2>What Does PHP 8.5 Do for Your Website?<\/h2>\n<p><img decoding=\"async\" src=\"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/php85-speed-performance-768x512.jpg\" alt=\"PHP 8.5 Performance and Speed\" width=\"768\" height=\"512\" style=\"width:100%;height:auto;border-radius:12px;margin-bottom:20px;\" \/><\/p>\n<h3>Up to 20% Faster Loading Times<\/h3>\n<p>Every new PHP version brings improvements in execution speed. PHP 8.5 processes requests more efficiently than ever before. This means:<\/p>\n<ul>\n<li><strong>Faster page loading<\/strong> \u2013 Your visitors see the page sooner, bounce rates decrease<\/li>\n<li><strong>Better Google ranking<\/strong> \u2013 Google favors fast websites (Core Web Vitals)<\/li>\n<li><strong>More revenue<\/strong> \u2013 Studies show: every second of faster loading can increase conversion rates by up to 7%<\/li>\n<li><strong>Less server load<\/strong> \u2013 Same hardware, more performance, your site stays stable even during peak traffic<\/li>\n<\/ul>\n<p><strong>Comparison:<\/strong> If your website has a loading time of 2.0 seconds with PHP 8.1, you can expect about 1.6\u20131.7 seconds with PHP 8.5 \u2013 without changing a single line of code.<\/p>\n<p>&nbsp;<\/p>\n<h3>Maximum Security for Your Website<\/h3>\n<p><img decoding=\"async\" src=\"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/php85-security-768x512.jpg\" alt=\"PHP 8.5 Security and Protection\" width=\"768\" height=\"512\" style=\"width:100%;height:auto;border-radius:12px;margin-bottom:20px;\" \/><\/p>\n<p>Security is not a luxury \u2013 it&#8217;s a necessity. With PHP 8.5 you benefit from:<\/p>\n<ul>\n<li><strong>Current security patches<\/strong> \u2013 New vulnerabilities are closed quickly<\/li>\n<li><strong>Improved input validation<\/strong> \u2013 Protection against common attack methods like SQL injection and XSS<\/li>\n<li><strong>Stricter typing<\/strong> \u2013 Less unexpected behavior, smaller attack surface<\/li>\n<li><strong>Deprecated unsafe functions<\/strong> \u2013 Outdated, insecure functions are gradually removed<\/li>\n<\/ul>\n<div style=\"background:#fff3cd;border-left:4px solid #ffc107;padding:15px 20px;border-radius:8px;margin:20px 0;\">\n<strong>Important:<\/strong> PHP 8.1 reached end-of-life in December 2025. This means: <strong>no more security updates.<\/strong> Websites running PHP 8.1 or older are a security risk. Switch now!\n<\/div>\n<p>&nbsp;<\/p>\n<h3>Future-Proof: Full Compatibility<\/h3>\n<p>More and more WordPress plugins, themes, and CMS updates require PHP 8.2 or newer. Switching to PHP 8.5 now means:<\/p>\n<ul>\n<li>You&#8217;re set for the next few years<\/li>\n<li>You can use all current plugins and themes<\/li>\n<li>You avoid sudden compatibility issues after updates<\/li>\n<li>You benefit from the latest framework optimizations (Laravel, Symfony, etc.)<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>Key New Features in PHP 8.5<\/h2>\n<p>For developers, PHP 8.5 brings several long-awaited features:<\/p>\n<h3>Pipe Operator (|&gt;)<\/h3>\n<p>The new pipe operator finally makes nested function calls readable. Instead of:<\/p>\n<pre><code>$result = array_unique(array_map('trim', explode(',', $input)));<\/code><\/pre>\n<p>You now write:<\/p>\n<pre><code>$result = $input |&gt; explode(',', ...) |&gt; array_map('trim', ...) |&gt; array_unique(...);<\/code><\/pre>\n<p>Code reads left to right \u2013 just like you think about it.<\/p>\n<h3>New URI Extension<\/h3>\n<p>Processing URLs safely used to be cumbersome. PHP 8.5 includes a built-in URI extension that can parse, normalize, and validate URLs according to RFC 3986 and WHATWG standards. No more insecure <code>parse_url()<\/code> workarounds.<\/p>\n<h3>Clone with<\/h3>\n<p>Objects can now be modified directly when cloning:<\/p>\n<pre><code>$newConfig = clone $config with {timeout: 30, retries: 3};<\/code><\/pre>\n<p>Ideal for immutable objects, value objects, and the with-er pattern.<\/p>\n<h3>#[\\NoDiscard] Attribute<\/h3>\n<p>Never forget to check a return value again. With <code>#[\\NoDiscard]<\/code>, PHP issues a warning when a function&#8217;s return value is ignored. This prevents common bugs like missed error checks.<\/p>\n<h3>Deprecations<\/h3>\n<ul>\n<li>The backtick operator (<code>`command`<\/code>) for <code>shell_exec()<\/code> is deprecated \u2013 use <code>shell_exec()<\/code> directly<\/li>\n<li>Non-canonical casts like <code>(boolean)<\/code>, <code>(integer)<\/code> are deprecated \u2013 use <code>(bool)<\/code>, <code>(int)<\/code>, <code>(float)<\/code><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>How to Switch to PHP 8.5 \u2013 Step by Step<\/h2>\n<p>Switching takes just 2 minutes and requires no technical knowledge:<\/p>\n<ol>\n<li><strong>Log in to Plesk<\/strong> \u2013 Open your Plesk Panel at your server address<\/li>\n<li><strong>Select your domain<\/strong> \u2013 Click on the domain you want to update<\/li>\n<li><strong>Open PHP Settings<\/strong> \u2013 In the &#8220;Hosting &#038; DNS&#8221; section, find &#8220;PHP Settings&#8221;<\/li>\n<li><strong>Select PHP 8.5<\/strong> \u2013 Choose &#8220;8.5.x&#8221; from the dropdown menu<\/li>\n<li><strong>Apply<\/strong> \u2013 Click &#8220;OK&#8221; or &#8220;Apply&#8221;<\/li>\n<li><strong>Test your website<\/strong> \u2013 Check that everything works as expected<\/li>\n<\/ol>\n<div style=\"background:#d4edda;border-left:4px solid #28a745;padding:15px 20px;border-radius:8px;margin:20px 0;\">\n<strong>Tip:<\/strong> Create a backup before switching. In Plesk, you can do this under &#8220;Websites &#038; Domains&#8221; \u2192 &#8220;Backup Manager&#8221; with a single click. If anything goes wrong, you can switch back immediately.\n<\/div>\n<p>Need help switching? Our support team is happy to assist \u2013 free of charge. Visit our <a href=\"https:\/\/www.firestorm.ch\/kb\">knowledge base<\/a> for detailed tutorials.<\/p>\n<div style=\"background:#e8f4fd;border-left:4px solid #197dc8;padding:15px 20px;border-radius:8px;margin:20px 0;\">\n<strong>Step-by-step guide: <a href=\"https:\/\/www.firestorm.ch\/kb\/change-php-version-in-plesk\/\">Change PHP version in Plesk<\/a><\/strong><br \/><span style=\"color:#555;font-size:14px;\">We also support older PHP versions (7.0\u20138.4). You can choose the version that best suits your website at any time.<\/span>\n<\/div>\n<p>&nbsp;<\/p>\n<h2>PHP Version Comparison<\/h2>\n<table style=\"width:100%;border-collapse:collapse;margin:20px 0;\">\n<thead>\n<tr style=\"background:#1a1a2e;color:#fff;\">\n<th style=\"padding:12px 16px;text-align:left;\">Feature<\/th>\n<th style=\"padding:12px 16px;text-align:center;\">PHP 8.1<\/th>\n<th style=\"padding:12px 16px;text-align:center;\">PHP 8.3<\/th>\n<th style=\"padding:12px 16px;text-align:center;background:#4361ee;\">PHP 8.5<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr style=\"border-bottom:1px solid #eee;\">\n<td style=\"padding:12px 16px;\">Security Updates<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#dc3545;\">No<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#ffc107;\">Until Dec 2027<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#28a745;font-weight:bold;\">Yes, active<\/td>\n<\/tr>\n<tr style=\"border-bottom:1px solid #eee;background:#f8f9fa;\">\n<td style=\"padding:12px 16px;\">Performance<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">Baseline<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">+10%<\/td>\n<td style=\"padding:12px 16px;text-align:center;font-weight:bold;\">+20%<\/td>\n<\/tr>\n<tr style=\"border-bottom:1px solid #eee;\">\n<td style=\"padding:12px 16px;\">Pipe Operator<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">\u2013<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">\u2013<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#28a745;font-weight:bold;\">Yes<\/td>\n<\/tr>\n<tr style=\"border-bottom:1px solid #eee;background:#f8f9fa;\">\n<td style=\"padding:12px 16px;\">URI Extension<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">\u2013<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">\u2013<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#28a745;font-weight:bold;\">Yes<\/td>\n<\/tr>\n<tr style=\"border-bottom:1px solid #eee;\">\n<td style=\"padding:12px 16px;\">WordPress 6.x Compatible<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#ffc107;\">Limited<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#28a745;\">Yes<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#28a745;font-weight:bold;\">Yes<\/td>\n<\/tr>\n<tr>\n<td style=\"padding:12px 16px;\">Recommendation<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#dc3545;\">Switch now!<\/td>\n<td style=\"padding:12px 16px;text-align:center;\">Good<\/td>\n<td style=\"padding:12px 16px;text-align:center;color:#28a745;font-weight:bold;\">Best Choice<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<h2>Why Choose FireStorm for Your PHP 8.5 Hosting?<\/h2>\n<ul>\n<li><strong>Swiss servers<\/strong> \u2013 Your data stays in Switzerland, GDPR compliant<\/li>\n<li><strong>Always the latest PHP versions<\/strong> \u2013 PHP 8.5 available from day one<\/li>\n<li><strong>Free support<\/strong> \u2013 Personal help with switching questions<\/li>\n<li><strong>Free test hosting<\/strong> \u2013 Test your website with PHP 8.5 before you decide<\/li>\n<li><strong>Plesk Control Panel<\/strong> \u2013 Switch PHP version with one click, no terminal needed<\/li>\n<li><strong>Daily backups<\/strong> \u2013 If something goes wrong, we restore your data<\/li>\n<li><strong>SSD storage &#038; HTTP\/2<\/strong> \u2013 Maximum speed for your website<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>Frequently Asked Questions (FAQ)<\/h2>\n<h3>Is PHP 8.5 compatible with WordPress?<\/h3>\n<p>Yes. WordPress officially supports PHP 8.5. WooCommerce, Elementor, Yoast SEO, and most popular plugins are also compatible. We still recommend briefly testing your website after switching.<\/p>\n<h3>Do I need to modify my code?<\/h3>\n<p>In most cases, no. If you use a standard CMS like WordPress, Joomla, or TYPO3, the switch works without code changes. Only very old custom code may generate deprecation warnings.<\/p>\n<h3>Can I switch back if something doesn&#8217;t work?<\/h3>\n<p>Yes, at any time. In Plesk, you can reset the PHP version with one click. Create a backup beforehand, and you&#8217;re safe.<\/p>\n<h3>Does switching to PHP 8.5 cost anything?<\/h3>\n<p>No. PHP 8.5 is included free of charge in all FireStorm hosting packages. No upgrade purchase required.<\/p>\n<h3>Which PHP versions should I avoid?<\/h3>\n<p>PHP 7.x and PHP 8.0 are already end-of-life and no longer receive security updates. PHP 8.1 has also been end-of-life since December 2025. We recommend at least PHP 8.3, ideally PHP 8.5.<\/p>\n<h3>I&#8217;m not technical \u2013 can someone help me?<\/h3>\n<p>Of course! Our support team will gladly switch your PHP version for you. Just send us a message via the <a href=\"https:\/\/admin.firestorm.ch\/submitticket.php\">support form<\/a> or give us a call.<\/p>\n<p>&nbsp;<\/p>\n<p style=\"font-size:12px;color:#999;margin-top:30px;\">Images: <a href=\"https:\/\/www.pexels.com\/photo\/server-racks-on-data-center-4508751\/\" rel=\"nofollow\" style=\"color:#999;\">Server Room by Brett Sayles \/ Pexels<\/a>, <a href=\"https:\/\/www.pexels.com\/photo\/space-shuttle-launch-during-nighttime-796206\/\" rel=\"nofollow\" style=\"color:#999;\">Rocket Launch by Edvin Richardson \/ Pexels<\/a>, <a href=\"https:\/\/www.pexels.com\/photo\/security-protection-anti-virus-software-60504\/\" rel=\"nofollow\" style=\"color:#999;\">Security by Pixabay \/ Pexels<\/a>. License: Pexels (free for commercial use).<\/p>\n<p><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"Article\",\n  \"headline\": \"PHP 8.5 now available on all FireStorm servers\",\n  \"description\": \"PHP 8.5 is available on all FireStorm servers. Up to 20% faster, maximum security and new features like the Pipe Operator.\",\n  \"image\": \"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg\",\n  \"datePublished\": \"2026-02-10\",\n  \"dateModified\": \"2026-02-10\",\n  \"author\": {\n    \"@type\": \"Organization\",\n    \"name\": \"FireStorm ISP\",\n    \"url\": \"https:\/\/www.firestorm.ch\"\n  },\n  \"publisher\": {\n    \"@type\": \"Organization\",\n    \"name\": \"FireStorm ISP\",\n    \"logo\": {\n      \"@type\": \"ImageObject\",\n      \"url\": \"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2018\/06\/logo_firestorm.png\"\n    }\n  }\n}\n<\/script><br \/>\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"HowTo\",\n  \"name\": \"Activate PHP 8.5 in Plesk\",\n  \"description\": \"How to switch your website to PHP 8.5 in 2 minutes \u2013 no technical knowledge required.\",\n  \"totalTime\": \"PT2M\",\n  \"supply\": [],\n  \"tool\": [\n    {\"@type\": \"HowToTool\", \"name\": \"Plesk Control Panel\"}\n  ],\n  \"step\": [\n    {\"@type\": \"HowToStep\", \"position\": 1, \"name\": \"Log in to Plesk\", \"text\": \"Open your Plesk Panel at your server address and log in.\"},\n    {\"@type\": \"HowToStep\", \"position\": 2, \"name\": \"Select your domain\", \"text\": \"In the Websites & Domains section, click on the domain you want to update.\"},\n    {\"@type\": \"HowToStep\", \"position\": 3, \"name\": \"Open PHP Settings\", \"text\": \"In the Hosting & DNS section, find PHP Settings.\"},\n    {\"@type\": \"HowToStep\", \"position\": 4, \"name\": \"Select PHP 8.5\", \"text\": \"In the PHP version dropdown menu, select version 8.5.x.\"},\n    {\"@type\": \"HowToStep\", \"position\": 5, \"name\": \"Apply\", \"text\": \"Click OK or Apply. The change takes effect immediately.\"},\n    {\"@type\": \"HowToStep\", \"position\": 6, \"name\": \"Test your website\", \"text\": \"Visit your website and check that everything works correctly. Also test the backend.\"}\n  ]\n}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PHP 8.5 is now available on all FireStorm servers. Pipe operator, new URI extension and improved performance.<\/p>\n","protected":false},"author":1,"featured_media":30208,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_relevanssi_hide_post":"","_relevanssi_pin_for_all":"","_relevanssi_pin_keywords":"","_relevanssi_unpin_keywords":"","_relevanssi_related_keywords":"","_relevanssi_related_include_ids":"","_relevanssi_related_exclude_ids":"","_relevanssi_related_no_append":"","_relevanssi_related_not_related":"","_relevanssi_related_posts":"","_relevanssi_noindex_reason":"","footnotes":""},"categories":[5360],"tags":[],"class_list":["post-30205","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>PHP 8.5 on FireStorm Servers - Faster, safer, better<\/title>\n<meta name=\"description\" content=\"PHP 8.5 is now available on all FireStorm servers. Faster, more secure, and with new features like the Pipe Operator. Activate it in Plesk now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP 8.5 now available on all FireStorm servers\" \/>\n<meta property=\"og:description\" content=\"PHP 8.5 brings more speed, new syntax features and better security. Activate it in Plesk with just a few clicks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/\" \/>\n<meta property=\"og:site_name\" content=\"FireStorm ISP\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/firestorm.ch\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-10T13:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-10T13:18:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1\" \/>\n\t<meta property=\"og:image:height\" content=\"1\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"FireStorm\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"PHP 8.5 now available on all FireStorm servers\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"FireStorm\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/\"},\"author\":{\"name\":\"FireStorm\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#\\\/schema\\\/person\\\/a839a8c7b2b298446e46dbfc490fe49e\"},\"headline\":\"PHP 8.5 now available on all FireStorm servers\",\"datePublished\":\"2026-02-10T13:00:00+00:00\",\"dateModified\":\"2026-02-10T13:18:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/\"},\"wordCount\":955,\"publisher\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.firestorm.ch\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/PHP85_TB.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-CH\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/\",\"url\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/\",\"name\":\"PHP 8.5 on FireStorm Servers - Faster, safer, better\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.firestorm.ch\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/PHP85_TB.jpg\",\"datePublished\":\"2026-02-10T13:00:00+00:00\",\"dateModified\":\"2026-02-10T13:18:34+00:00\",\"description\":\"PHP 8.5 is now available on all FireStorm servers. Faster, more secure, and with new features like the Pipe Operator. Activate it in Plesk now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#breadcrumb\"},\"inLanguage\":\"en-CH\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CH\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.firestorm.ch\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/PHP85_TB.jpg\",\"contentUrl\":\"https:\\\/\\\/www.firestorm.ch\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/PHP85_TB.jpg\",\"width\":2560,\"height\":1444,\"caption\":\"PHP 8.5 Update - FireStorm Hosting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/news\\\/php-85-jetzt-verfuegbar\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/www.firestorm.ch\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP 8.5 now available on all FireStorm servers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#website\",\"url\":\"https:\\\/\\\/www.firestorm.ch\\\/\",\"name\":\"FireStorm\",\"description\":\"Webhosting, Domainnamen, Server, Mailserver und Hosting mit Homepagebaukasten und Free SSL Zertifikat\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.firestorm.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CH\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#organization\",\"name\":\"FireStorm\",\"url\":\"https:\\\/\\\/www.firestorm.ch\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CH\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.firestorm.ch\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/FireStormLogo.png\",\"contentUrl\":\"https:\\\/\\\/www.firestorm.ch\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/FireStormLogo.png\",\"width\":589,\"height\":60,\"caption\":\"FireStorm\"},\"image\":{\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/firestorm.ch\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.firestorm.ch\\\/#\\\/schema\\\/person\\\/a839a8c7b2b298446e46dbfc490fe49e\",\"name\":\"FireStorm\",\"url\":\"https:\\\/\\\/www.firestorm.ch\\\/en\\\/news\\\/author\\\/webkoenig\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP 8.5 on FireStorm Servers - Faster, safer, better","description":"PHP 8.5 is now available on all FireStorm servers. Faster, more secure, and with new features like the Pipe Operator. Activate it in Plesk now!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/","og_locale":"en_US","og_type":"article","og_title":"PHP 8.5 now available on all FireStorm servers","og_description":"PHP 8.5 brings more speed, new syntax features and better security. Activate it in Plesk with just a few clicks.","og_url":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/","og_site_name":"FireStorm ISP","article_publisher":"https:\/\/www.facebook.com\/firestorm.ch\/","article_published_time":"2026-02-10T13:00:00+00:00","article_modified_time":"2026-02-10T13:18:34+00:00","og_image":[{"url":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.png","width":1,"height":1,"type":"image\/png"}],"author":"FireStorm","twitter_card":"summary_large_image","twitter_title":"PHP 8.5 now available on all FireStorm servers","twitter_misc":{"Written by":"FireStorm","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#article","isPartOf":{"@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/"},"author":{"name":"FireStorm","@id":"https:\/\/www.firestorm.ch\/#\/schema\/person\/a839a8c7b2b298446e46dbfc490fe49e"},"headline":"PHP 8.5 now available on all FireStorm servers","datePublished":"2026-02-10T13:00:00+00:00","dateModified":"2026-02-10T13:18:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/"},"wordCount":955,"publisher":{"@id":"https:\/\/www.firestorm.ch\/#organization"},"image":{"@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#primaryimage"},"thumbnailUrl":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg","articleSection":["Blog"],"inLanguage":"en-CH"},{"@type":"WebPage","@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/","url":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/","name":"PHP 8.5 on FireStorm Servers - Faster, safer, better","isPartOf":{"@id":"https:\/\/www.firestorm.ch\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#primaryimage"},"image":{"@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#primaryimage"},"thumbnailUrl":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg","datePublished":"2026-02-10T13:00:00+00:00","dateModified":"2026-02-10T13:18:34+00:00","description":"PHP 8.5 is now available on all FireStorm servers. Faster, more secure, and with new features like the Pipe Operator. Activate it in Plesk now!","breadcrumb":{"@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#breadcrumb"},"inLanguage":"en-CH","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/"]}]},{"@type":"ImageObject","inLanguage":"en-CH","@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#primaryimage","url":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg","contentUrl":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg","width":2560,"height":1444,"caption":"PHP 8.5 Update - FireStorm Hosting"},{"@type":"BreadcrumbList","@id":"https:\/\/www.firestorm.ch\/news\/php-85-jetzt-verfuegbar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/www.firestorm.ch\/en\/"},{"@type":"ListItem","position":2,"name":"PHP 8.5 now available on all FireStorm servers"}]},{"@type":"WebSite","@id":"https:\/\/www.firestorm.ch\/#website","url":"https:\/\/www.firestorm.ch\/","name":"FireStorm","description":"Webhosting, Domainnamen, Server, Mailserver und Hosting mit Homepagebaukasten und Free SSL Zertifikat","publisher":{"@id":"https:\/\/www.firestorm.ch\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.firestorm.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CH"},{"@type":"Organization","@id":"https:\/\/www.firestorm.ch\/#organization","name":"FireStorm","url":"https:\/\/www.firestorm.ch\/","logo":{"@type":"ImageObject","inLanguage":"en-CH","@id":"https:\/\/www.firestorm.ch\/#\/schema\/logo\/image\/","url":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/03\/FireStormLogo.png","contentUrl":"https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/03\/FireStormLogo.png","width":589,"height":60,"caption":"FireStorm"},"image":{"@id":"https:\/\/www.firestorm.ch\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/firestorm.ch\/"]},{"@type":"Person","@id":"https:\/\/www.firestorm.ch\/#\/schema\/person\/a839a8c7b2b298446e46dbfc490fe49e","name":"FireStorm","url":"https:\/\/www.firestorm.ch\/en\/news\/author\/webkoenig\/"}]}},"rttpg_featured_image_url":{"full":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg",2560,1444,false],"landscape":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg",2560,1444,false],"portraits":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB.jpg",2560,1444,false],"thumbnail":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB-150x150.jpg",150,150,true],"medium":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB-300x169.jpg",300,169,true],"large":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB-1024x578.jpg",1024,578,true],"1536x1536":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB-1536x866.jpg",1536,866,true],"2048x2048":["https:\/\/www.firestorm.ch\/wp-content\/uploads\/2026\/02\/PHP85_TB-2048x1155.jpg",2048,1155,true]},"rttpg_author":{"display_name":"FireStorm","author_link":"https:\/\/www.firestorm.ch\/en\/news\/author\/webkoenig\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/www.firestorm.ch\/en\/news\/category\/blog-en\/\" rel=\"category tag\">Blog<\/a>","rttpg_excerpt":"PHP 8.5 is now available on all FireStorm servers. Pipe operator, new URI extension and improved performance.","_links":{"self":[{"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/posts\/30205","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/comments?post=30205"}],"version-history":[{"count":0,"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/posts\/30205\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/media\/30208"}],"wp:attachment":[{"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/media?parent=30205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/categories?post=30205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.firestorm.ch\/en\/wp-json\/wp\/v2\/tags?post=30205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}