๐ค
PHP
Write solid PHP avoiding type juggling traps, array quirks, and common security pitfalls.
ๅฎๅ
จ้่ฟ
๐ฌPrompt
ๆ่ฝ่ฏดๆ
name: PHP slug: php version: 1.0.1 description: Write solid PHP avoiding type juggling traps, array quirks, and common security pitfalls. metadata: {"clawdbot":{"emoji":"๐","requires":{"bins":["php"]},"os":["linux","darwin","win32"]}}
Quick Reference
| Topic | File |
|---|---|
| Loose typing, ==, ===, type juggling, strict_types | types.md |
| Associative arrays, iteration, array functions | arrays.md |
| Traits, interfaces, visibility, late static binding | oop.md |
| Encoding, interpolation, heredoc, regex | strings.md |
| Exceptions, error handling, @ operator | errors.md |
| SQL injection, XSS, CSRF, input validation | security.md |
| PHP 8+ features, attributes, named args, match | modern.md |
Critical Rules
==coerces types:"0" == falseis true โ always use===for strict comparisonin_array($val, $arr)uses loose comparison โ passtrueas third param for strictstrpos()returns 0 for match at start โ use=== falsenot!strpos()- Never concatenate SQL โ use prepared statements with PDO
htmlspecialchars($s, ENT_QUOTES)all output โ prevents XSSisset()returns false for null โ usearray_key_exists()to check key existsforeach ($arr as &$val)โ unset$valafter loop or last ref persistsstatic::late binding vsself::early binding โstaticrespects overrides@suppresses errors โ avoid, makes debugging impossible- Catch
Throwablefor bothErrorandExceptionโ PHP 7+ declare(strict_types=1)per file โ enables strict type checkingstrlen()counts bytes โ usemb_strlen()for UTF-8 character count- Objects pass by reference-like handle โ clone explicitly with
clone $obj array_merge()reindexes numeric keys โ use+operator to preserve keys
ๅฆไฝไฝฟ็จใPHPใ๏ผ
- ๆๅผๅฐ้พ่พAI๏ผWeb ๆ iOS App๏ผ
- ็นๅปไธๆนใ็ซๅณไฝฟ็จใๆ้ฎ๏ผๆๅจๅฏน่ฏๆกไธญ่พๅ ฅไปปๅกๆ่ฟฐ
- ๅฐ้พ่พAI ไผ่ชๅจๅน้ ๅนถ่ฐ็จใPHPใๆ่ฝๅฎๆไปปๅก
- ็ปๆๅณๆถๅ็ฐ๏ผๆฏๆ็ปง็ปญๅฏน่ฏไผๅ