Codectionary / Developer documentation / PHP

PHP JSON encode and decode

PHP reference for php json encode and decode.

Syntax

$json = json_encode(["name" => "Ada"], JSON_THROW_ON_ERROR);
$data = json_decode($json, true, flags: JSON_THROW_ON_ERROR);

Examples

PHP JSON encode and decode example

A focused example you can adapt while practising.

$json = json_encode(["name" => "Ada"], JSON_THROW_ON_ERROR);
$data = json_decode($json, true, flags: JSON_THROW_ON_ERROR);

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Server-side web applications
File extension
.php
Runs in
PHP runtime on a server or CLI
Usually used with
HTML, databases and web servers

Specifications & further reading

Related PHP documentation