General
Execute and test PHP functions that have no place in one of the other categories.
filter_var
Filters a variable with a specified filter.
floatval
La funzione restituisce il valore di tipo float di $var.
Geo Distance
The distance function calculates the distance between 2 geo-coordinates. The distance is the distance on the crow flies, not by an itinerary.
The coordinates can be entered with . and , for the decimal place. Calculates the distance in kilometers (km).
intval
Estrae il valore intero di $var, utilizzando la base definita a parametro per la conversione. (La base vale 10 di default).
json_decode
Json_decode() takes a JSON encoded string and converts it into a PHP variable.
json_encode
Returns a string containing the JSON representation of $value.
serialize
Genera una versione archiviabile di un valore
Questo ? utile per archiviare o passare valori a PHP senza perderne il tipo e la struttura.
Per ottenere il valore dalla stringa serializzata, utilizzare la funzione unserialize().
strval
Restituisce il valore di $var interpretato come stringa. Per maggiori informazioni sulla conversione a stringa, vedere la documentazione relativa alle variabili di tipo string.
unserialize
La funzione unserialize() prende il formato serializzato di una variabile (vedere serialize()) e la riporta al valore PHP.