PHP - دسترسی به مقادیر رمزگشایی شده(PHP - Accessing the Decoded Values)
در اینجا دو مثال از نحوه دسترسی به مقادیر رمزگشایی شده از یک شی و
از یک آرایه انجمنی:
مثال
This example shows how to access the values from a PHP object:
<?php
$jsonobj = '{"Peter":35,"Ben":37,"Joe":43}';
$obj = json_decode($jsonobj);
echo $obj->Peter;
echo $obj->Ben;
echo $obj->Joe;
?>
Run مثال »مثال
This example shows how to access the values from a
PHP associative array:
<?php
$jsonobj = '{"Peter":35,"Ben":37,"Joe":43}';
$arr = json_decode($jsonobj, true);
echo $arr["Peter"];
echo $arr["Ben"];
echo $arr["Joe"];
?>
Run مثال »