Migrated all my own running projects to #PHP 8.5.
That's easily possible, thanks to a great ecosystem. This includes:
* phpunit.de/
* phpstan.org/
* php.net/ itself of course
* nixos.org/
* launchpad.net/~ondrej
They make it easily possible to maintain and run projects based on PHP.
Laravel vs Symfony: A Comprehensive Comparison of #PHP #Frameworks
This article provides a guide concerning #Laravel vs Symfony: a comprehensive comparison of PHP frameworks.
Laravel vs Symfony: A Comprehensive Comparison of PHP Frameworks
Laravel and #Symfony are two of the most popular PHP frameworks, widely used for building modern web applications. Both have strong communities, rich ecosystems, and are frequently chosen by ...
Continued 👉 https://blog.radwebhosting.com/laravel-vs-symfony-a-comprehensive-comparison-of-php-frameworks/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #websitedevelopment

The last few weeks I've been learning about GameBoy game roms and compression algorithms. And I saw the DuckTales game was only 64k, and thought "that's smaller than my company's Contact page"... "can I run it in PHP?"
The short answer is no, but you can pull out images and sprites:
https://www.terrymatula.com/random/2026/decompiling-ducktales-for-game-boy-with-php/
A116459: Numbers k such that A003313(k) = A003313(3*k)
A116459 ➡️ https://oeis.org/A116459
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A116459.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A116459.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A116459.html
#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research

A115921: Numbers k such that the decimal digits of phi(k) are a permutation of those of k
A115921 ➡️ https://oeis.org/A115921
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A115921.html
3D graph Gen, threejs animation ➡️ https://decompwlj.com/3DgraphGen/A115921.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A115921.html
#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research

How to Fix preg_match Returning 0 but Not False
preg_match returns 0 for no match, false for error.
#php #pregmatch #regex #bug #howto #validation
https://www.youtube.com/watch?v=lXE7QPGb6GQ
The 5 Best Hosting Services for Laravel in 2026. 🇺🇸
Los 5 Mejores Hosting Para Laravel en 2026. 🇪🇸
🦄 https://nubecolectiva.com/blog/los-5-mejores-hosting-para-laravel/
#programming #coding #programación #code #webdevelopment #devs #softwaredevelopment #hosting #laravelframework #php

Upgrading #Composer from 2.8 to 2.9 breaks my scripts, and I'm trying to create a short self-contained example in a separate project to either report a bug or find some error on my side, to no avail: simplified scripts work fine in either version.
Out of sheer desperation in the face of failure, I've copied my entire project into the SSCE folder. Scripts work fine in either version.
🙃
#php #rant
#PHP / #Laravel friends of Fedi - I'm running into a weird issue with phpactor I have 0 clue how to solve and I'm brand new to all of this...curious if anyone has thoughts.
I'm using Livewire in a Laravel app and phpactor refuses to accept that Route::livewire is a thing, it returns a missing member error causing my project to have 30+ fake problem flags in my IDE.
I asked in the Livewire GitHub and was told I should be able to deal with it however phpactor deals with other macros, but the phpactor docs are confusing the hell out of me.
Any advice/suggestions/fixes?
GitHub versions our code, but what about other important elements like issues and comments? In today's video, I show you how to see a version history for these elements too. #php #laravel https://masteringlaravel.io/daily/2026-02-06-video-even-github-comments-have-version-control
Today I attempted to write and sort of succeeded* in making an extension for #php and let me tell you right now, my utmost respect goes out to @thephpf because I wouldn't wish C upon my worst enemies.
*by bugging @asgrim every ten mins
Always fun when tests fail in CI and succeed locally. Turns out we don't clear out smarty cache in our tests so locally the compiled templates were already compiled but in CI we compiled the templates fresh on each run.
And that caused a deprecation warning which failed the tests.