functions-online

General

Execute and test PHP functions that have no place in one of the other categories.

filter_var

Filtra a variável com um especificado filtro.

floatval

Obtém o valor float de $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

Retorna o valor integer de $var, usando a $base especificada para a conversão (o padrão é a base 10).

json_decode

Analisa a string codificada JSON e converte-a em uma variável do PHP.

json_encode

Retorna a string contendo a representação JSON de um $value.

serialize

Generates a storable representation of a value. This is useful for storing or passing PHP values around without losing their type and structure.

To make the serialized string into a PHP value again, use unserialize().

strval

Obtém o valor string de uma variável $var. Veja a documentação sobre string para maiores informações de conversão de strings.

unserialize

unserialize() utiliza uma única variável serializado e converte-lo de volta em um valor do PHP.