将POST数据从json-text转换为PHP对象?

时间:2017-10-29 17:06:40

标签: php json email post smtp

我正在尝试设置自动电子邮件处理。我正在使用外部服务https://www.email2json.net将电子邮件转换为我网站上的webhook网址上调用的JSON /文本格式。

如何获取原始发布数据并将其转换为PHP中的对象? 因此将电子邮件jebrish转换为有意义的东西?

感谢。

1 个答案:

答案 0 :(得分:1)

您正在获取通过POST发送的JSON对象,因此您应首先使用以下命令检索输入对象:

$input = file_get_contents("php://input");

然后,您可以使用json_decode本机函数将其转换为关联数组,从而轻松处理此JSON对象:

$decoded_input = json_decode($input, true);

希望这会有所帮助。