Skip to main content

4 posts tagged with "PHP"

PHP

View All Tags

Reading and Writing Google Sheets in PHP

ยท 7 min read
Nicolas Dupont
Nicolas Dupont
Founder @ nidup

Google Sheets is a very used online spreadsheets system allowing real-time collaboration on the data. Let's learn how to manipulate Google Sheets using the PHP API Client.

Read, Decode, Encode, Write JSON in PHP

ยท 9 min read
Nicolas Dupont
Nicolas Dupont
Founder @ nidup

JSON (JavaScript Object Notation) is a standard file format for data exchange between applications.

In this tutorial, we will learn how to perform the most common manipulation, such as encoding, decoding, and converting JSON to Array and Array to JSON with the help of examples.

Reading and Writing CSV Files in PHP

ยท 15 min read
Nicolas Dupont
Nicolas Dupont
Founder @ nidup

CSV for Comma-Separated Values is a well-established file format to import and export data.

In this tutorial, we will learn how to read and write CSV files in PHP with the help of examples.