json_encode

(no version information, might be only in CVS)

json_encode -- Returns the JSON representation of a value

Description

string json_encode ( mixed value )

Returns a string containing the JSON representation of value.

Parameters

value

The value being encoded. Can be any type except a resource.

This function only works with UTF-8 encoded data.

Return Values

Returns a JSON encoded string on success.

ChangeLog

VersionDescription
5.2.1 Added support to JSON encode basic types

Examples

Example 1. A json_encode() example

<?php
$arr
= array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);

echo
json_encode($arr);
?>

The above example will output:

{"a":1,"b":2,"c":3,"d":4,"e":5}

See Also

json_decode()


Follow phpf1 on Twitter




F1 Site Family
AJAX F1
CSS F1
Database F1
Flash F1
HTML F1
Java F1
JavaScript F1
PhotoShop F1
PHP F1
Scripts F1
Tutorial F1
Windows F1

Total time: 0.5003