← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #php educational data only
| |
Last 30 days
38 pings — 2026-05-13 W 28 pings — 2026-05-14 T 186 pings — 2026-05-15 F 36 pings — 2026-05-16 S 33 pings — 2026-05-17 S 45 pings — 2026-05-18 M 32 pings — 2026-05-19 T 65 pings — 2026-05-20 W 137 pings — 2026-05-21 T 152 pings — 2026-05-22 F 578 pings — 2026-05-23 S 84 pings — 2026-05-24 S 52 pings — 2026-05-25 M 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 — Yesterday W 154 pings — Today T
Ahrefs 48Scrapy 24Google 22Common Crawl 18ChatGPT 15SEMrush 8Sogou 8Twitter/X 6Bing 3Perplexity 2
Scrapy 188Ahrefs 35SEMrush 25Google 13Perplexity 12ChatGPT 11Claude 6Bing 6Qwen 3Sogou 1
ChatGPT 4.7kAmazonbot 4kScrapy 3.6kPerplexity 2.9kGoogle 1.7kAhrefs 1.5kSEMrush 1kUnknown AI 977Claude 608Meta AI 501Bing 394Majestic 187Qwen 34Sogou 32Common Crawl 18DuckDuckGo 7Twitter/X 6You.com 2NotebookLM 2PetalBot 1
crawler 20.4k crawler_json 1.5k rag 1 pre-tracking 284
Tag total22.2k pings Terms pinged463 / 463 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
Symbol Table Resolution PHP 5.3+
The compiler phase that maps identifiers (variables, functions, classes) to their declarations, scopes, and types during semantic analysis.
6d ago compiler advanced
Regex Escape Sequences PHP 4.1+
Backslash sequences in regex that either match special characters literally or represent character classes, anchors, and control characters.
7d ago regex intermediate
Regex Conditional Patterns PHP 4.0+ 🧠 1
Conditional regex constructs like (?(1)yes|no) match different subpatterns depending on whether an earlier group captured.
1w ago regex advanced
Loop Style Preferences PHP 7.4+
Choose the clearest loop construct for the job: foreach for collections, for with index when position matters, while for condition-driven iteration.
3w ago style beginner
Regex Branch Reset Groups 🧠 1
A PCRE-specific construct (?|...) that resets capture group numbers across each alternative, so all branches share the same group indices.
1mo ago regex advanced
Memory Pressure Detection PHP 7.0+
Proactively identifying when a PHP process approaches its memory limit so corrective action can be taken before a fatal error.
1mo ago performance intermediate
HTTP Cookies in PHP PHP 7.3+
Cookies are small key-value pairs sent by the server via Set-Cookie and echoed back by the browser on every request — PHP sets them with setcookie() before any output, with Secure, HttpOnly, and SameSite flags controlling safety.
2mo ago php beginner
Insecure Deserialization
Deserializing attacker-controlled data can trigger arbitrary object construction and method calls — PHP's unserialize() with untrusted input enables remote code execution via gadget chains in the loaded class graph.
CWE-502 OWASP A8:2021
2mo ago security advanced
INSERT ... ON DUPLICATE KEY UPDATE PHP 5.1+
An atomic MySQL upsert — inserts a new row or updates the existing one if a unique key constraint would be violated.
2mo ago database intermediate
Mutex vs Semaphore PHP 7.0+ 🧠 1
A mutex allows only one thread to access a resource at a time — a semaphore controls access to a pool of N identical resources.
CWE-362
2mo ago concurrency advanced
MySQL charset=utf8mb4 PHP 5.1+
The correct MySQL character set for full Unicode support — including emoji and supplementary characters that the older utf8 charset cannot store.
2mo ago php beginner
MySQL Connection Pooling PHP 5.1+
Reusing database connections across requests instead of opening and closing a new connection on every request.
2mo ago php intermediate
MySQL DSN (Data Source Name) PHP 5.1+
The connection string passed to PDO specifying the database driver, host, port, database name, and charset.
2mo ago php beginner
Diagram: N+1 Query Problem N+1 Query Problem PHP 5.1+
A performance anti-pattern where fetching N records triggers N additional queries — one per record — instead of a single JOIN.
2mo ago database intermediate
PDO Error Handling PHP 5.1+
PDO has three error modes — silent, warning, and exception — controlling how database errors surface.
2mo ago php beginner
PDO Fetch Modes PHP 5.1+
Constants controlling how PDO returns rows — as arrays, objects, or custom classes.
2mo ago php beginner
PDO lastInsertId() PHP 5.1+
Returns the auto-increment ID generated by the most recent INSERT statement.
2mo ago php beginner
PDO Named Placeholders PHP 5.1+
Named parameters (:name) in prepared statements — more readable than positional ? placeholders for queries with multiple parameters.
2mo ago php beginner
PDO query() vs prepare() PHP 5.1+
PDO query() executes raw SQL immediately — prepare() parameterises it. query() must never include user-controlled values.
CWE-89 OWASP A3:2021
2mo ago php beginner 9.8
Diagram: PDO Transactions PDO Transactions PHP 5.1+
PDO wraps multiple queries in an atomic unit — either all succeed or all roll back.
2mo ago php intermediate
✓ schema.org compliant