php

Back Open Paginator
06.03.2026 18:56
dunglas (@dunglas@mastodon.social)

🧟 Official native Windows support for FrankenPHP is here 🪟🚀

âś… Rely on official PHP Windows binaries
âś… Support all FrankenPHP features, including worker mode and hot reloading
âś… Full PHP extension support
⚡️ Up to 3.6x faster than Nginx/PHP-FPM on Windows!

Try it and read the full story on how we made it happen: dunglas.dev/2026/03/windows-su

Thanks to Intelligence X and Les-Tilleuls.coop for having sponsored this feature!




Show Original Post


06.03.2026 18:45
2026 (@2026@dunglas.dev)

Windows Support for FrankenPHP: It’s Finally Alive!

It’s happening! I am thrilled to announce the immediate availability of official Windows support for FrankenPHP. Since the project's initial release, this has been by far the most requested feature. While many of you have been successfully running FrankenPHP on Windows via WSL (Windows Subsystem for Linux), native support was the "white whale" we’ve been chasing for a long time. Today, that chase is over. You can now run FrankenPHP natively on Windows, with 100% compatibility, including […]

dunglas.dev/2026/03/windows-su





Show Original Post


06.03.2026 17:25
symfony (@symfony@mastodon.social)

⏳Last call for early bird tickets — SymfonyDay Montréal!

Next Monday, March 9, is your final chance to grab your ticket at the early bird price đź’Ą

🎟️ Get your ticket now before prices rise:
👉 live.symfony.com/2026-montreal

👀 See you in Montréal!





Show Original Post


06.03.2026 16:11
Crell (@Crell@phpc.social)

Running #Lando on GitHub Actions. #Laravel #PHP

garfieldtech.com/blog/lando-gi




Show Original Post


06.03.2026 15:39
jimw (@jimw@mefi.social)

This is a great first issue filed against a head-scratcher of a project. (It is a #Rust compiler written in #PHP.)
github.com/mrconter1/rustc-php




Show Original Post


06.03.2026 15:37
lukasrotermund (@lukasrotermund@social.tchncs.de)

Is there a good `.ctags` content with `--regex-php` that recognizes enums and their cases? It's not included in the latest universal ctags 6.2, and my regex tests have all failed so far. Perhaps someone else has had more success with this.

My current test `.ctags` looks like this (it's obviously wrong haha):

```
--regex-php=/enum[[:space:]]+([a-zA-Z_][a-zA-Z0-9_]*)[[:space:]]*/\1/e,enum/
--regex-php=/case[[:space:]]+([a-zA-Z_][a-zA-Z0-9_]*)[[:space:]]*;/\1/case/
```

And it should find enums with the following structure:

```php
enum Foo
{
case A;
case B;
}
```

And of course also backed enums:

```php
enum Foo: string
{
case A = 'a';
case B = 'b';
}
```

#ctags #uctags #UniversalCtags #php




Show Original Post


06.03.2026 15:16
jclermont (@jclermont@phpc.social)

In today's video, I show you a one-word change that can eliminate duplicate eager loading queries in your Laravel app. #php #laravel masteringlaravel.io/daily/2026




Show Original Post


06.03.2026 13:01
SensioLabsOfficial (@SensioLabsOfficial@mastodon.social)

đź“°

New article by Imen Ezzine on our 🤩

Learn about 3 collaborative ceremonies: Event Storming, Example Mapping & Domain Storytelling

Imen explains how these ceremonies impacted her journey to becoming a better developer 🚀

đź”— tinyurl.com/59wck48m





Show Original Post


06.03.2026 13:00
techygeekshome (@techygeekshome@techhub.social)

Create an Alphabetical Filter Page in WordPress | techygeekshome.info/create-an- #php #refresh #Wordpress 
techygeekshome.info/create-an-





Show Original Post


06.03.2026 12:30
ajguides (@ajguides@mastodon.social)

Create an Alphabetical Filter Page in WordPress | techygeekshome.info/create-an-  
techygeekshome.info/create-an-





Show Original Post


06.03.2026 11:39
symfony (@symfony@mastodon.social)

🤖Fabien Potencier: Keynote à Paris 2026 !
“Développer un Coding Agent en PHP : dans les coulisses du 'Harness'”

Rendez-vous le 26 mars ! 👀✨
symfony.com/blog/symfonylive-p




Show Original Post


06.03.2026 11:14
Edent (@Edent@mastodon.social)

Hey, friends. Is there a sensible way to make a script return an HTTP header before it has finished processing?

```
<?php
header( "Location: example.com/" );
sleep(100);
die();
```

By sensible, I mean "doesn't spawn an `exec` process or rely on an external script to finish the job."




Show Original Post


1 ...93 94 95 96 97 98 99 100 101 102 103 ...524
UP