digitalcourage.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Diese Instanz wird betrieben von Digitalcourage e.V. für die Allgemeinheit. Damit wir das nachhaltig tun können, erheben wir einen jährlichen Vorausbeitrag von 1€/Monat per SEPA-Lastschrifteinzug.

Server stats:

858
active users

#php

110 posts92 participants11 posts today

Over the years, I think I have been burned by just about every form of loose type comparison in PHP. Today, I'm going to demo how these can bubble up into the Laravel test helpers and how to avoid the problem. #php #laravel masteringlaravel.io/daily/2025

Mastering LaravelWatch out for mixed type comparisons in Laravel view data | Mastering LaravelAnd how to avoid the problem

🆕 blog! “An opinionated HTML Serializer for PHP 8.4”

A few days ago, I wrote a shitty pretty-printer for PHP 8.4's new Dom\HTMLDocument class.

I've since re-written it to be faster and more stylistically correct.

It turns this:

<html lang="en-GB"><head><title id="something">Test</title></head><body><h1 class="top upper">Testing</h1><main><p>Some <em>HTML</em> and an…

👀 Read more: shkspr.mobi/blog/2025/04/an-op

#HowTo #HTML5 #php

The HTML5 Logo.
Terence Eden’s Blog · An opinionated HTML Serializer for PHP 8.4
More from Terence Eden

Managed to get unit tests working in a pre-commit hook today - no more commits unless they pass the tests! Although every developer has to setup the hook manually because you can't easily put hooks into Git itself (there are hacky ways around this, e.g. by using post-install-cmd in Composer).

Nearly everything I work on is bespoke and legacy, so getting tests setup is a lot harder than with a new or modern project based on a framework.