Skip to content
Snippets

Snippet Library

Practical pure PHP patterns that are easy to study, adapt and use.

Code

Variable Variables

Demonstrates PHP variable variables with an explicit allowlist so the selected variable name is controlled by code, not raw user input.

Open Snippet
Code

Magic Constants

Returns common PHP magic constants from inside a function so their file, directory, line, and function values are visible.

Open Snippet
Code

Read a CSV File

Reads a CSV file with fopen() and fgetcsv(), returning rows only when the file resolves under an approved base directory.

Open Snippet