← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #php84 educational data only
| |
Last 30 days
1 ping — 2026-05-26 T 6 pings — 2026-05-27 W 9 pings — 2026-05-28 T 0 pings — 2026-05-29 F 1 ping — 2026-05-30 S 1 ping — 2026-05-31 S 1 ping — 2026-06-01 M 1 ping — 2026-06-02 T 4 pings — 2026-06-03 W 12 pings — 2026-06-04 T 5 pings — 2026-06-05 F 11 pings — 2026-06-06 S 7 pings — 2026-06-07 S 5 pings — 2026-06-08 M 6 pings — 2026-06-09 T 6 pings — 2026-06-10 W 2 pings — 2026-06-11 T 10 pings — 2026-06-12 F 3 pings — 2026-06-13 S 0 pings — 2026-06-14 S 1 ping — 2026-06-15 M 0 pings — 2026-06-16 T 7 pings — 2026-06-17 W 1 ping — 2026-06-18 T 0 pings — 2026-06-19 F 2 pings — 2026-06-20 S 3 pings — 2026-06-21 S 1 ping — 2026-06-22 M 4 pings — Yesterday T 3 pings — Today W
Claude 3
PetalBot 4
Amazonbot 81ChatGPT 53Scrapy 48Google 39Perplexity 37Ahrefs 28Unknown AI 25SEMrush 16Meta AI 11Claude 11PetalBot 7Bing 6Majestic 5Sogou 2
crawler 333 crawler_json 28 pre-tracking 8
Tag total369 pings Terms pinged9 / 9 Distinct agents13
Level All Beginner Intermediate Advanced Tag: php84
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
Abstract readonly Properties PHP 8.4+
PHP 8.4 allows abstract readonly properties in abstract classes and interfaces — defining that implementations must provide a readonly property of a specific type.
3mo ago PHP advanced
Property Hooks (PHP 8.4) PHP 8.4+
PHP 8.4 property hooks add get and set accessors directly to property declarations — eliminating the need for explicit getter/setter methods on simple value objects.
3mo ago PHP advanced
Asymmetric Visibility (PHP 8.4) PHP 8.4+
PHP 8.4 allows separate read and write visibility on properties — public(get) private(set) means anyone can read but only the class can write.
3mo ago PHP intermediate
Lazy Objects (PHP 8.4) PHP 8.4+
PHP 8.4 native lazy object proxies defer initialisation until first access — enabling zero-cost dependency injection of services that may never be used in a request.
3mo ago PHP advanced
Property Hooks (PHP 8.4) PHP 8.0+
PHP 8.4 property hooks attach get and set logic directly to a property declaration — co-locating validation and transformation with the property itself.
3mo ago PHP advanced
Property Hooks (PHP 8.4) PHP 8.4+ 🧠 1
PHP 8.4 allows get and set hooks directly on class properties — replacing boilerplate getter/setter methods with inline logic on the property declaration.
3mo ago PHP intermediate
Asymmetric Visibility (PHP 8.4) PHP 8.4+
PHP 8.4 asymmetric visibility lets you set different access levels for reading and writing a property — public(get) protected(set) — without getter/setter methods.
PHP intermediate
Lazy Objects (PHP 8.4) PHP 8.4+
PHP 8.4 native lazy objects defer object initialisation until first property access — previously requiring proxy libraries, now built into the engine via ReflectionClass.
PHP advanced
Property Hooks (PHP 8.4) PHP 8.4+
PHP 8.4 property hooks attach get/set logic directly to a property declaration — eliminating getter/setter method boilerplate for common validation and transformation patterns.
PHP advanced
✓ schema.org compliant