Esercitazione PHP

PHP HOME Introduzione a PHP Installazione PHP Sintassi PHP Commenti PHP Variabili PHP PHP Eco/Stampa Tipi di dati PHP Stringhe PHP Numeri PHP PHP matematica Costanti PHP Operatori PHP PHP Se...Altro...Altro Passaggio PHP Ciclo PHP Funzioni PHP Array PHP Superglobali PHP RegEx PHP

Moduli PHP

Gestione dei moduli PHP Convalida del modulo PHP Modulo PHP richiesto URL/e-mail del modulo PHP Modulo PHP completo

PHP avanzato

Data e ora PHP PHP Include Gestione dei file PHP Apri/Leggi file PHP Creazione/scrittura di file PHP Caricamento file PHP Cookie PHP Sessioni PHP Filtri PHP Filtri PHP avanzati Funzioni di callback PHP PHP JSON Eccezioni PHP

PHP OOP

PHP Che cos'è OOP Classi/Oggetti PHP Costruttore PHP PHP distruttore Modificatori di accesso PHP Ereditarietà PHP Costanti PHP Classi astratte PHP Interfacce PHP Tratti PHP Metodi statici PHP Proprietà statiche PHP Spazi dei nomi PHP Iterabili PHP

Database MySQL

Database MySQL MySQL Connect MySQL Crea DB MySQL Crea tabella Dati di inserimento MySQL MySQL Ottieni l'ultimo ID MySQL inserisce più MySQL preparato MySQL Seleziona dati MySQL dove MySQL Ordina per MySQL Elimina dati Dati di aggiornamento MySQL Dati limite MySQL

PHP XML

Parser XML PHP Analizzatore PHP SimpleXML PHP SimpleXML - Ottieni PHP XML espatriato PHP XML DOM

PHP - AJAX

Introduzione all'Ajax AJAX PHP Database AJAX XML AJAX Ricerca in tempo reale AJAX Sondaggio AJAX

Esempi PHP

Esempi PHP compilatore PHP Quiz PHP Esercizi PHP Certificato PHP

Riferimento PHP

Panoramica di PHP matrice PHP Calendario PHP Data PHP Directory PHP Errore PHP Eccezione PHP File system PHP Filtro PHP PHP FTP PHP JSON Parole chiave PHP PHP Libxml Posta PHP PHP matematica PHP Varie PHP MySQLi Rete PHP Controllo dell'output PHP RegEx PHP PHP SimpleXML Flusso PHP Stringa PHP Gestione delle variabili PHP Analizzatore XML PHP Zip PHP Fuso orario PHP

Funzioni PHP JSON


Introduzione a PHP JSON

L'estensione JSON implementa il formato di interscambio di dati JavaScript Object Notation.

In PHP 5, la decodifica è gestita da un parser basato su JSON_checker di Douglas Crockford.

PHP 7 ha un parser nuovo e migliorato scritto specificamente per PHP e concesso in licenza con la licenza PHP.


Installazione

Da PHP 5.2.0, le funzioni JSON sono abilitate per impostazione predefinita. Non è necessaria alcuna installazione per utilizzare queste funzioni.


Funzioni PHP JSON

Function Description
json_decode() Decodes a JSON string
json_encode() Encode a value to JSON format
json_last_error() Returns the last error occurred
json_last_error_msg() Returns the error string of the last json_encode() or json_decode() call

Costanti JSON predefinite di PHP

Constant Type Description
JSON_ERROR_NONE Integer No error has occurred
JSON_ERROR_DEPTH Integer Maximum stack depth has been exceeded
JSON_ERROR_STATE_MISMATCH Integer Invalid/Malformed JSON
JSON_ERROR_CTRL_CHAR Integer Control character error
JSON_ERROR_SYNTAX Integer Syntax error
JSON_ERROR_UTF8 Integer Malformed UTF-8 characters. PHP 5.3
JSON_ERROR_RECURSION Integer Invalid recursive reference values. PHP 5.5
JSON_ERROR_INF_OR_NAN Integer Invalid NAN or INF values. PHP 5.5
JSON_ERROR_UNSUPPORTED_TYPE Integer Invalid type. PHP 5.5
JSON_ERROR_INVALID_PROPERTY_NAME Integer Invalid property name. PHP 7.0
JSON_ERROR_UTF16 Integer Malformed UTF-16 characters. PHP 7.0
JSON_BIGINT_AS_STRING Integer  
JSON_OBJECT_AS_ARRAY Integer  
JSON_HEX_TAG Integer  
JSON_HEX_AMP Integer  
JSON_HEX_APOS Integer  
JSON_HEX_QUOT Integer  
JSON_FORCE_OBJECT Integer  
JSON_NUMERIC_CHECK Integer  
JSON_PRETTY_PRINT Integer  
JSON_UNESCAPED_SLASHES Integer  
JSON_PARTIAL_OUTPUT_ON_ERROR Integer  
JSON_PRESERVE_ZERO_FRACTION Integer  
JSON_UNESCAPED_LINE_TERMINATORS Integer  
JSON_INVALID_UTF8_IGNORE Integer  
JSON_INVALID_UTF8_SUBSTITUTE Integer  
JSON_THROWN_ON_ERROR Integer