php curl ,如何給 undefined 代替 null?

當我 curl 請求給對方時

$data = array(
    "a" => $a,
    "b" => $b
  );
  $data_string = json_encode($data);

假設我這邊給對方的 b 沒有值
對方那邊收到會是null
那是否可以變成
當我這邊沒有值的時候
我可否主動給對方 undefined 而不是 null?

對方是這樣設定的:
https://img2.mukewang.com/5c8f4860000177ce03670097.jpg

慕勒3428872
浏览 319回答 2
2回答

慕娘9325324

$data = array( "a" => $a, ); if($b) { $data['b'] = $b; }
打开App,查看更多内容
随时随地看视频慕课网APP