json 形式で適切な出力を取得しようとしていますが、以下の出力は少し乱雑です。次のようになります。
"{"table":"users","operation":"select","username":"inan"}"
どうすれば問題を解決できますか?
ありがとう
サーバー.php
print_r($_POST);
client.php
$data = array('table'=>'users', 'operation'=>'select', 'uid'=>'yoyo');
curl_setopt($curl_handle, CURLOPT_POSTFIELDS, $data);
$output = curl_exec($curl_handle);
if ($this->request_response_type == 'array')
{
echo $output;
}
else if ($this->request_response_type == 'json')
{
echo json_encode($output);
}
else if ($this->request_response_type == 'xml')
{
//xml conversion will be done here later. not ready yet.
}
出力:
"Array\n(\n [table] => users\n [operation] => select\n [uid] => yoyo\n)\n"