$input = file_get_contents('php://input'); $myfile = fopen("newfile.txt", "w") or die("Unable to open file!"); $array = xmlToArray($input); $EventKey = $array['EventKey']; $s = explode('_', $EventKey); $recom_id = $s[1]; $user_openid = $array['FromUserName']; fwrite($myfile, $input); fclose($myfile);