json字典和hash的区别

发布于 2024-10-04 08:12:08 字数 336 浏览 3 评论 0原文

我正在用 PHP 开发一个应用程序,我应该在其中调用外部 API。 api 规范说

Request Type : POST
POST data format : JSON Dictionary or Hash
Mandatory Dictionary / Hash Keys and expected values
1. fname  : value - First name of user
2. lname  : value - Last name of use
...

JSON Dictionary 和 JSON Hash 之间有什么区别。 我如何在 PHP 中实现这个? 提前致谢

I am developing an application in PHP where in I am supposed to call an external API.
The api specification says

Request Type : POST
POST data format : JSON Dictionary or Hash
Mandatory Dictionary / Hash Keys and expected values
1. fname  : value - First name of user
2. lname  : value - Last name of use
...

What is the difference between JSON Dictionary and JSON Hash.
How do I implement this in PHP?
Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傾城如夢未必闌珊 2024-10-11 08:12:08

Hash 和 Dictionary 是 JSON 对象在其他语言中的称呼。

名称/值对的集合。在各种语言中,这被实现为对象、记录、结构、字典、哈希表、键控列表或关联数组。

http://json.org/

要创建一个,请从 PHP 关联数组开始并通过 json_encode

Hash and Dictionary are what JSON Objects are called in other languages.

A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array.

http://json.org/

To create one, start with a PHP associative array and run it through json_encode

北城挽邺 2024-10-11 08:12:08

字典哈希实际上是同一件事,根据定义它们都有键值对。

您可以使用 json_decode 函数为您提供字典/哈希的 PHP 表示形式:一个关联数组

$hash = json_decode($some_external_content);
print_r($hash);

同样,您可以使用以下方法将关联数组转换为 JSON 哈希: json_encode 函数:

$json_object = json_encode(array('x' => 'y')); //{'x':'y'}

A dictionary and a hash are actually the same thing, by definition they both have key - value pairs.

You can use the json_decode function to give you a PHP representation of a dictionary/hash: an associative array:

$hash = json_decode($some_external_content);
print_r($hash);

Likewise, you can convert an associative array to a JSON hash using the json_encode function:

$json_object = json_encode(array('x' => 'y')); //{'x':'y'}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文