Tag: php
Kubernetes for PHP Developers
PHP 5.0+
1
The essential Kubernetes concepts PHP developers need — Pods, Deployments, Services, ConfigMaps, Secrets, and Ingress — for deploying and scaling PHP applications on Kubernetes.
3mo ago
DevOps intermediate
Key Array Functions (array_map, array_filter, array_reduce…)
PHP 5.0+
6
PHP's functional array processing functions enable expressive, pipeline-style transformations without explicit loops.
3mo ago
PHP beginner
Key Derivation Functions
PHP 5.5+
KDFs (PBKDF2, bcrypt, scrypt, Argon2) derive a cryptographic key from a password by being intentionally slow — making brute-force attacks computationally infeasible.
3mo ago
Cryptography advanced
Key String Functions (str_contains, str_starts_with, str_ends_with…)
PHP 5.0+
PHP 8.0 introduced readable string helpers that replace strpos() !== false idioms for common substring checks.
3mo ago
PHP beginner