我正在尝试将jQuery数组从jquery ajax调用传递给php文件,在php文件中,我将收到的数据写入文件。我的代码:
var contacts = [{"address":[],"phone":[],"last_name":"abc","email":[{"address":"test@yahoo.com","type":null,"selected":true}],"first_name":"Test"}];
$.ajax({
url: 'handler.php',
type: "POST",
dataType: 'json',
data: { 'json': JSON.stringify(contacts) } ,
success: function(response){
alert(response);
}
});
和php代码:
$json = $_POST['json'];
$response = json_decode($json);
$file = fopen('test.txt','w+');
fwrite($file, $response);
fclose($file);
echo "Done";
没有将json数据写入文件,即文件为空
答案 0 :(得分:0)
json_decode
接受一个JSON字符串,并将其解析为一个对象(或关联数组)。由于您要将其写入文件,因此您无需先解析它(一个将字符串写入文件,而不是对象)。
$json = $_POST['json'];
file_put_contents('text.txt', $json)