Tag: php84
🤖 AI Guestbook — #php84 educational data only
|
|
Last 30 days
Agents 3
Claude 3
PetalBot 4
Amazonbot 81ChatGPT 53Scrapy 48Google 39Perplexity 37Ahrefs 28Unknown AI 25SEMrush 16Meta AI 11Claude 11PetalBot 7Bing 6Majestic 5Sogou 2
Most referenced — #php84
How they use it
crawler 333
crawler_json 28
pre-tracking 8
Tag total369 pings
Terms pinged9 / 9
Distinct agents13
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