← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #php81 educational data only
| |
Last 30 days
0 pings — 2026-05-26 T 7 pings — 2026-05-27 W 10 pings — 2026-05-28 T 1 ping — 2026-05-29 F 3 pings — 2026-05-30 S 3 pings — 2026-05-31 S 2 pings — 2026-06-01 M 0 pings — 2026-06-02 T 6 pings — 2026-06-03 W 8 pings — 2026-06-04 T 8 pings — 2026-06-05 F 15 pings — 2026-06-06 S 10 pings — 2026-06-07 S 15 pings — 2026-06-08 M 5 pings — 2026-06-09 T 3 pings — 2026-06-10 W 2 pings — 2026-06-11 T 15 pings — 2026-06-12 F 1 ping — 2026-06-13 S 1 ping — 2026-06-14 S 0 pings — 2026-06-15 M 3 pings — 2026-06-16 T 6 pings — 2026-06-17 W 0 pings — 2026-06-18 T 1 ping — 2026-06-19 F 3 pings — 2026-06-20 S 8 pings — 2026-06-21 S 5 pings — 2026-06-22 M 6 pings — Yesterday T 4 pings — Today W
Claude 4
PetalBot 5Bing 1
Amazonbot 93ChatGPT 77Perplexity 56Scrapy 53Google 51Unknown AI 40Ahrefs 37SEMrush 30Claude 24Meta AI 16PetalBot 14Bing 7Qwen 2Sogou 2Majestic 1
crawler 435 crawler_json 52 pre-tracking 16
Tag total503 pings Terms pinged12 / 12 Distinct agents14
Level All Beginner Intermediate Advanced Tag: php81
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Diagram: PHP Fibers — Internals & Scheduler Patterns PHP Fibers — Internals & Scheduler Patterns PHP 8.1+
How PHP Fibers work under the hood — stack allocation, suspension mechanics, and how to build a cooperative multitasking scheduler on top of the Fiber API introduced in PHP 8.1.
3mo ago PHP advanced
Enums — First-Class Enumerations (PHP 8.1) PHP 8.1+
PHP 8.1 native enums replace class constant hacks — providing type-safe, enumerable, matchable values with optional backing values (: string or : int).
3mo ago PHP intermediate
Fibers — Cooperative Concurrency (PHP 8.1) PHP 8.1+
PHP 8.1 Fibers enable cooperative multitasking — suspending execution at yield points and resuming later — the foundation for async PHP frameworks without OS threads.
3mo ago PHP advanced
Intersection & DNF Types in Practice PHP 8.1+
PHP 8.1 intersection types (A&B) and PHP 8.2 DNF types ((A&B)|null) allow precise type constraints for objects implementing multiple interfaces.
3mo ago PHP advanced
Named Arguments in Attributes PHP 8.1+
PHP 8.1+ allows named arguments inside attribute constructors — #[Route(path: '/home', methods: ['GET'])] — making attribute usage self-documenting.
3mo ago PHP intermediate
readonly Properties (PHP 8.1) PHP 8.1+
PHP 8.1 readonly properties can only be written once (in the constructor) — enforcing immutability without verbose accessor boilerplate.
3mo ago PHP beginner
callable vs Closure vs First-Class Callable PHP 7.1+
PHP has three callable forms: loose callable (string/array), typed Closure, and PHP 8.1 first-class callables (strlen(...)) — prefer Closure or first-class callables for type safety.
3mo ago PHP intermediate
Constructor Promotion + readonly Together PHP 8.1+
PHP 8.1+ allows readonly in constructor promotion: public function __construct(public readonly string $name) — the cleanest way to write immutable value objects.
3mo ago PHP intermediate
Enum::cases() & Enum from()/tryFrom() PHP 8.1+
Backed enums provide from() (throws on miss) and tryFrom() (returns null) for value lookup, plus cases() to get all cases — essential for forms and validation.
3mo ago PHP intermediate
Enums Implementing Interfaces PHP 8.1+
PHP 8.1 enums can implement interfaces, allowing them to be used wherever an interface is expected — enabling polymorphic enum-based dispatch.
3mo ago PHP intermediate
Spread Operator in Arrays [...$a, ...$b] PHP 8.1+
PHP 8.1+ allows the spread operator ... inside array literals to merge arrays — cleaner than array_merge() for combining arrays inline.
3mo ago PHP beginner
Fiber-Based Task Scheduler PHP 8.1+
Building a cooperative multitasking scheduler with PHP Fibers — suspending and resuming tasks at I/O wait points to run multiple tasks concurrently in a single thread.
3mo ago PHP advanced
✓ schema.org compliant