我正在尝试使用 php 服务器从反编译的 Android 应用程序中读取数据。我曾经wireshark
了解应用程序发送哪些类型的数据,结果是:
{"initType":"第一次","参数":true,"details":................}
我试图捕获这些数据并将它们插入到具有此 php 代码的文件中:
<?php
$json = $_POST["initType"];
$decoded = json_decode($json, TRUE);
if ($decoded === FALSE) {
throw new Exception('Bad JSON format.');
}
$file_handle = fopen('tmp.json', 'w');
fwrite($file_handle, $decoded);
fclose($file_handle);
?>
该文件已正确生成,但为空。错误是什么?