All Snippets
The latest code snippets.
Hash Passwords with bcrypt
Use password_hash and password_verify — never store plaintext.
Author:
chris
JSON Encode and Decode in PHP
Round-trip JSON with JSON_THROW_ON_ERROR for safe decoding.
Author:
chris
cURL GET Request in PHP
Issue a GET request with libcurl wrappers and capture the body.
Author:
chris
Read a File Line by Line in PHP
Use SplFileObject to iterate a file lazily without loading it all into RAM.
Author:
chris
Wrap and Unwrap Errors in Go
Wrap errors with fmt.Errorf %w and inspect with errors.Is / As.
Author:
chris
Parse Flags with the flag Package
Parse typed CLI flags using the stdlib flag package.
Author:
chris