json_encode
(PHP 5 >= 5.2.0, PECL json:1.2.0-1.2.1)
json_encode — Returns the JSON representation of a value
LeÃrás
string json_encode
( mixed $value
)
Returns a string containing the JSON representation of value .
Paraméterek
- value
-
The value being encoded. Can be any type except a resource.
This function only works with UTF-8 encoded data.
Visszatérési értékek
Returns a JSON encoded string on success.
Változások naplója
Változat | LeÃrás |
---|---|
5.2.1 | Added support to JSON encode basic types |
Példák
Example#1 A json_encode() example
<?php
$arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
echo json_encode($arr);
?>
A fenti példa a következő kimenetet adja:
{"a":1,"b":2,"c":3,"d":4,"e":5}