← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #php educational data only
| |
Last 30 days
68 pings — 2026-05-26 T 213 pings — 2026-05-27 W 478 pings — 2026-05-28 T 74 pings — 2026-05-29 F 170 pings — 2026-05-30 S 130 pings — 2026-05-31 S 140 pings — 2026-06-01 M 91 pings — 2026-06-02 T 235 pings — 2026-06-03 W 463 pings — 2026-06-04 T 687 pings — 2026-06-05 F 545 pings — 2026-06-06 S 998 pings — 2026-06-07 S 729 pings — 2026-06-08 M 388 pings — 2026-06-09 T 300 pings — 2026-06-10 W 173 pings — 2026-06-11 T 275 pings — 2026-06-12 F 178 pings — 2026-06-13 S 57 pings — 2026-06-14 S 133 pings — 2026-06-15 M 151 pings — 2026-06-16 T 158 pings — 2026-06-17 W 137 pings — 2026-06-18 T 128 pings — 2026-06-19 F 151 pings — 2026-06-20 S 270 pings — 2026-06-21 S 211 pings — 2026-06-22 M 193 pings — Yesterday T 403 pings — Today W
Claude 384SEMrush 9PetalBot 7Bing 2ChatGPT 1
PetalBot 119SEMrush 20Google 17ChatGPT 13Bing 10Perplexity 7Ahrefs 5Sogou 2
ChatGPT 5kAmazonbot 4kScrapy 3.6kPerplexity 3kGoogle 2kAhrefs 1.8kSEMrush 1.4kUnknown AI 1kClaude 992Bing 575Meta AI 503PetalBot 434Majestic 229Sogou 77Qwen 45Common Crawl 18DuckDuckGo 10Yandex 9Twitter/X 6You.com 2ShapBot 2NotebookLM 2
crawler 22.8k crawler_json 1.6k rag 1 pre-tracking 284
Tag total24.7k pings Terms pinged464 / 464 Distinct agents21
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
Property-Based Testing PHP 7.0+
A testing approach that generates hundreds of random inputs to verify that a property (invariant) holds for all of them — finding edge cases that example-based tests miss.
3mo ago Testing advanced
Psalm Type Annotations PHP 7.1+ 🧠 1
Psalm's docblock annotations — @param, @return, @template, @psalm-type — extend PHP's native type system to express generics, aliases, and complex types.
3mo ago Style intermediate
PSR-11: Container Interface PHP 5.3+
A standard ContainerInterface with get() and has() enabling framework-agnostic service resolution from any PSR-11-compliant DI container.
3mo ago Style intermediate
PSR-12 Coding Standard PHP 7.1+
The PHP-FIG extended coding style guide that supersedes PSR-2, covering namespaces, imports, classes, and control structures.
3mo ago Style beginner
PSR-14: Event Dispatcher PHP 7.2+
Standard EventDispatcherInterface and ListenerProviderInterface for framework-agnostic event dispatch and handler registration.
3mo ago Style intermediate
PSR-15: HTTP Handlers & Middleware PHP 7.0+
Defines RequestHandlerInterface and MiddlewareInterface for composable, framework-agnostic HTTP middleware pipelines.
3mo ago Style intermediate
PSR-17: HTTP Factories PHP 7.1+
Standard factory interfaces for creating PSR-7 HTTP objects — decoupling library code from any specific PSR-7 implementation.
3mo ago Style intermediate
PSR-1: Basic Coding Standard PHP 5.3+
The foundational PHP-FIG standard defining file encoding, PHP tags, namespace/class naming, and the single-responsibility rule for files.
3mo ago Style beginner
PSR-3: Logger Interface PHP 5.3+
A common LoggerInterface with eight RFC 5424 severity methods (emergency, alert, critical, error, warning, notice, info, debug).
3mo ago Style beginner
PSR-4 Autoloading Standard PHP 5.3+
Maps PHP namespaces to directory structures so classes are automatically loaded without explicit require statements.
3mo ago Style beginner
PSR-6: Caching Interface PHP 5.5+
Standard CacheItemPoolInterface and CacheItemInterface for framework-agnostic cache integration — decouple code from specific cache backends.
3mo ago Style intermediate
PSR-7: HTTP Message Interface PHP 5.3+
Immutable interfaces for HTTP requests and responses, enabling framework-agnostic HTTP handling and middleware composition.
3mo ago Style intermediate
Queue Worker Tuning PHP 7.0+
Configuring PHP queue workers (Laravel Horizon, Supervisor) for throughput, memory limits, graceful restarts, and concurrency — preventing job failures and memory leaks.
3mo ago Performance intermediate
Diagram: RabbitMQ RabbitMQ PHP 7.0+
A message broker implementing AMQP — producers publish to exchanges, exchanges route to queues, consumers pull from queues — providing durable, reliable message delivery.
3mo ago Messaging intermediate
random_bytes() PHP 7.0+ 🧠 1
Generates cryptographically secure random bytes from the OS entropy source — use for tokens, salts, and nonces.
3mo ago PHP intermediate
Readonly Classes (PHP 8.2) PHP 8.2+ 🧠 2
Marking an entire class readonly automatically makes all its declared properties readonly, simplifying immutable value object creation.
3mo ago PHP intermediate
Readonly Classes (PHP 8.2) PHP 8.2+
Marking an entire class readonly makes all its properties implicitly readonly — ideal for immutable value objects and DTOs with minimal boilerplate.
3mo ago PHP advanced
Readonly Properties (PHP 8.1) PHP 8.1+ 🧠 2
Properties declared with readonly can only be initialised once and then never modified, enforcing immutability at the language level.
3mo ago PHP intermediate
realpath() PHP 5.0+ 🧠 2
Resolves a path to its canonical absolute form, collapsing ../ sequences — used to prevent path traversal.
3mo ago PHP intermediate
Rector — Automated PHP Upgrades & Refactoring PHP 7.1+ 🧠 7
Rector applies rule-based AST transformations to upgrade PHP versions, migrate frameworks, and enforce coding patterns — automatically.
3mo ago Style intermediate
✓ schema.org compliant