以下是将Navigation Drawer
转换为Array
json
这是我的结果
$specific = [];
$specific[] = ["message" => $row["traditionalmessage"],
"mobile" => $row["telMobile"]];
}
echo json_encode($specific,JSON_UNESCAPED_UNICODE);
现在,我必须使用PHP连接到ASP.Net API。 由于API已设置登录 ,我需要发送带有2个键的标题
[{"message":"hi","mobile":"96709394"},{"message":"hello","mobile":"96709394"}]
有关连接ASP.NET API的任何想法? 感谢