← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — PHP educational data only
| |
Last 30 days
29 pings — 2026-05-26 T 135 pings — 2026-05-27 W 264 pings — 2026-05-28 T 48 pings — 2026-05-29 F 136 pings — 2026-05-30 S 105 pings — 2026-05-31 S 107 pings — 2026-06-01 M 48 pings — 2026-06-02 T 122 pings — 2026-06-03 W 272 pings — 2026-06-04 T 359 pings — 2026-06-05 F 299 pings — 2026-06-06 S 536 pings — 2026-06-07 S 420 pings — 2026-06-08 M 244 pings — 2026-06-09 T 158 pings — 2026-06-10 W 93 pings — 2026-06-11 T 214 pings — 2026-06-12 F 104 pings — 2026-06-13 S 26 pings — 2026-06-14 S 75 pings — 2026-06-15 M 88 pings — 2026-06-16 T 109 pings — 2026-06-17 W 63 pings — 2026-06-18 T 70 pings — 2026-06-19 F 76 pings — 2026-06-20 S 159 pings — 2026-06-21 S 117 pings — 2026-06-22 M 117 pings — Yesterday T 43 pings — Today W
Claude 41SEMrush 1Bing 1
PetalBot 77SEMrush 13Google 7ChatGPT 6Perplexity 4Bing 4Ahrefs 4Sogou 2
ChatGPT 2.4kAmazonbot 2.1kScrapy 2kPerplexity 1.6kGoogle 1.1kAhrefs 1kSEMrush 744Unknown AI 589Claude 391Meta AI 312Bing 287PetalBot 258Majestic 126Sogou 43Qwen 28DuckDuckGo 7Common Crawl 7ShapBot 4NotebookLM 4Brave Search 2
crawler 11.9k crawler_json 913 rag 1 pre-tracking 192
Category total13k pings Terms pinged271 / 271 Distinct agents19
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
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
File Permissions PHP 4.0+
Unix permission bits (owner/group/world read-write-execute) that control which processes can read, write, or execute files — misconfigured permissions are a common PHP deployment and security issue.
3mo ago PHP beginner
Generators & yield (PHP 5.5) PHP 5.5+
Generators (PHP 5.5) use yield to produce values lazily — enabling memory-efficient iteration over large datasets without loading everything into memory.
3mo ago PHP intermediate
Global Function Style vs OOP Evolution PHP 4.0+
PHP 4's procedural global-function style evolved into PHP 5 OOP — understanding the transition explains why modern PHP has both paradigms and how to migrate legacy procedural code.
3mo ago PHP beginner
Guzzle HTTP Client PHP 7.2+
Guzzle is PHP's most popular HTTP client library — providing a clean API for making synchronous and asynchronous HTTP requests, handling middleware, retries, authentication, and multipart uploads, with PSR-7 and PSR-18 compliance.
3mo ago PHP intermediate
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
JIT Compiler Introduction (PHP 8.0) PHP 8.0+
PHP 8.0's JIT (Just-In-Time) compiler compiles hot bytecode to native machine code at runtime — significant gains for CPU-bound tasks, minimal gains for typical web requests.
3mo ago PHP advanced
json_validate() — Native JSON Validation (PHP 8.3) PHP 8.3+ 🧠 2
PHP 8.3 added json_validate() — a dedicated function that checks whether a string is valid JSON without decoding it, making validation faster and cheaper than json_decode() + error checking.
3mo ago PHP beginner
Late Static Binding — PHP 5.3 Feature PHP 5.3+
static:: (Late Static Binding, PHP 5.3) refers to the called class at runtime — unlike self:: which always refers to the class where the method is defined.
3mo ago PHP intermediate
match Expression (PHP 8.0) PHP 8.0+
PHP 8.0's match is a stricter switch — uses strict (===) comparison, each arm is an expression (not statements), returns a value, and throws UnhandledMatchError if no arm matches.
3mo ago PHP beginner
mb_string — Multibyte String Functions PHP 4.0+ 🧠 2
PHP's native string functions operate on bytes, not characters. The mb_string extension provides mb_strlen(), mb_substr(), mb_strtolower() and 100+ equivalents that correctly handle multibyte encodings like UTF-8.
3mo ago PHP intermediate
mcrypt Deprecation — Migrate to OpenSSL PHP 5.0+
mcrypt was deprecated in PHP 7.1 and removed in PHP 7.2 — migrate all encryption to OpenSSL (openssl_encrypt) or libsodium (sodium_crypto_secretbox).
3mo ago PHP intermediate
Memory Exhaustion PHP 4.0+ 🧠 1
PHP's Allowed Memory Size Exhausted fatal error — caused by loading too much data into memory at once, unbounded loops accumulating objects, or memory leaks in long-running processes.
3mo ago PHP intermediate
Migrating from PHP 4 to PHP 5 PHP 4.0+
PHP 4→5 migration: objects now pass by reference, add visibility (public/protected/private), replace var with typed properties, fix object assignment semantics, and adopt try/catch.
3mo ago PHP intermediate
Migrating from PHP 7 to PHP 8 PHP 7.0+
PHP 7→8 migration: fix type coercion changes (stricter), remove deprecated functions (each(), create_function()), update match/constructor promotion, check third-party compatibility.
3mo ago PHP intermediate
Named Arguments (PHP 8.0) PHP 8.0+
PHP 8.0 named arguments let you pass values by parameter name — skipping optional params, self-documenting calls, and enabling out-of-order argument passing.
3mo ago PHP beginner
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
new in Initializers (PHP 8.4) PHP 8.4+
PHP 8.4 allows 'new ClassName()' expressions in default parameter values, attribute arguments, and static property initialisers — removing the need for null defaults combined with late assignment in constructors.
3mo ago PHP intermediate
Null Coalescing ?? Operator (PHP 7.0) PHP 7.0+
PHP 7.0's ?? operator returns the left side if it exists and isn't null, otherwise the right — replacing isset($x) ? $x : $default with $x ?? $default.
3mo ago PHP beginner
Null Reference Errors PHP 5.0+
Errors caused by calling methods or accessing properties on null — PHP's 'Call to a member function X() on null' and JavaScript's 'Cannot read properties of null' are the most common runtime errors in both languages.
3mo ago PHP beginner
✓ schema.org compliant