我正在尝试创建一个可以从this java class收听http请求的php脚本,我尝试使用$ _POST,但似乎无效。任何帮助将不胜感激!
答案 0 :(得分:0)
尝试echo file_get_contents("php://input");
以了解您的java类发送的内容。 $_POST
仅在数据是urlencoded字符串时才有效。如果你的javaclass正在发送json,你应该这样读:$JSON = json_decode(file_get_contents("php://input"), true);