Code Snippets

Language: PHP

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

Write to a File in PHP

Use file_put_contents with LOCK_EX for an atomic write.

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